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

📄 quit.java

📁 简单的议程管理的小实验,包含可运行BAT文件和TEST用例
💻 JAVA
字号:
package agenda.command;import agenda.Exception.*;/** * Quit command * @author wc */public class QUIT implements Command{        /**     * Command parse method     * @param args     * @throws agenda.Exception.InvalidCommandException     */    public void parse(String[] args) throws InvalidCommandException    {        if(args.length != 1)            throw new InvalidCommandException("quit");    }        /**     * Command execute method     */    public void execute(){        System.exit(0);    }}

⌨️ 快捷键说明

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