package com.cctv.news.command; import com.cctv.news.view.OutputView; public class ExitCommand implements Command { private final OutputView view; public ExitCommand(OutputView view) { this.view = view; } @Override public String getName() { return "exit"; } @Override public String getHelp() { return "exit - 退出程序"; } @Override public void execute(String[] args) { view.showMessage("感谢使用央视新闻爬虫,再见!"); System.exit(0); } }