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

📄 balllistinterface.java

📁 书籍"Java_面向事件编程"的附带光盘代码
💻 JAVA
字号:
import objectdraw.*;// A list of FilledOvals.  This interface// captures what is common about all lists.public interface BallListInterface {        // Returns true if the list is empty    public boolean isEmpty();        // Returns the first ball in the list    // pre: the list is not an empty list.    public FilledOval getFirst();            // Returns the rest of the list, after    // the first ball.    // pre: the list is not an empty list.    public BallListInterface getRest();    }

⌨️ 快捷键说明

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