import java.util.List; /** * Command 接口:所有命令必须实现 */ public interface Command { String getName(); void execute(String[] args, List
articles); }