You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
360 B
19 lines
360 B
package com.crawler.command;
|
|
|
|
public class ExitCommand extends BaseCommand {
|
|
@Override
|
|
public String getName() {
|
|
return "exit";
|
|
}
|
|
|
|
@Override
|
|
public String getDescription() {
|
|
return "退出程序";
|
|
}
|
|
|
|
@Override
|
|
public void execute() {
|
|
System.out.println("退出程序...");
|
|
System.exit(0);
|
|
}
|
|
}
|