database.java
来自「现在在国外大学里最流行的java学习软件,同时还有大量的example,在名为p」· Java 代码 · 共 47 行
JAVA
47 行
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<Item> items; /** * Construct an empty Database. */ public Database() { items = new ArrayList<Item>(); } /** * Add an item to the database. * @param theItem The item to be added. */ public void addItem(Item theItem) { items.add(theItem); } /** * Print a list of all currently stored CDs and videos to the * text terminal. */ public void list() { for(Item item : items) { item.print(); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?