⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 catalog.java

📁 beginJsp2.0外文书籍源代码
💻 JAVA
字号:
package com.wrox.shop;import java.util.ArrayList;/** * The publisher's catalog. Essentially just a List with some * Book objects hardwired in the constructor. */public class Catalog extends ArrayList {        /**     * Constructs a new Catalog with some dummy content.     */    public Catalog() {        // Start with a call to the superclass's constructor         super();                // Create default content        add(new Book("Beginning JSP 2.0", 49.99));        add(new Book("Beginning Java 1.4 Networking", 49.99));        add(new Book("Beginning Java 2 SDK 1.4 Edition", 49.99));        add(new Book("Java Server Programming, J2EE 1.4 Edition", 54.99));    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -