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.
8 lines
245 B
8 lines
245 B
public class Controller {
|
|
private HistoryCommand history = new HistoryCommand();
|
|
|
|
public void executeCommand(String command) {
|
|
history.addCommand(command); // 记录每一条命令
|
|
// ... 原有命令处理逻辑
|
|
}
|
|
}
|