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

📄 database.java

📁 现在在国外大学里最流行的java学习软件,同时还有大量的example,在名为project的文件里.安装好后用bluej打开peoject的例子,可以进行你想要的任何变化.同时可以了解大量的源码
💻 JAVA
字号:
import java.util.ArrayList;/** * The database class provides a facility to store CD and video  * objects. A list of all CDs and videos can be printed to the * terminal. *  * This version does not save the data to disk, and it does not * provide any search functions. *  * @author Michael Kolling and David J. Barnes * @version 2006.03.30 */public class Database{    private ArrayList<CD> cds;    private ArrayList<DVD> dvds;    /**     * Construct an empty Database.     */    public Database()    {        cds = new ArrayList<CD>();        dvds = new ArrayList<DVD>();    }    /**     * Add a CD to the database.     * @param theCD The CD to be added.     */    public void addCD(CD theCD)    {        cds.add(theCD);    }    /**     * Add a DVD to the database.     * @param theDVD The DVD to be added.     */    public void addDVD(DVD theDVD)    {        dvds.add(theDVD);    }    /**     * Print a list of all currently stored CDs and DVDs to the     * text terminal.     */    public void list()    {        // print list of CDs        for(CD cd : cds) {            cd.print();            System.out.println();   // empty line between items        }        // print list of DVDs        for(DVD dvd : dvds) {            dvd.print();            System.out.println();   // empty line between items        }    }}

⌨️ 快捷键说明

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