Skip to content

Commit 0a5945d

Browse files
authored
Update common.ts
1 parent 30f6b74 commit 0a5945d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Command(命令)/common.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Invoker {
88
public setCommand(command: Command): void {
99
this.command = command;
1010
}
11-
public call(): void {
11+
public run(): void {
1212
console.log("调用者执行命令command...");
1313
this.command.execute();
1414
}
@@ -38,13 +38,13 @@ class Client {
3838
public static main(): void {
3939
const cmd: Command = new ConcreteCommand();
4040
const ir: Invoker = new Invoker(cmd);
41-
console.log("客户访问调用者的call()方法...");
42-
ir.call();
41+
console.log("客户访问调用者的run()方法...");
42+
ir.run();
4343
}
4444
}
4545
Client.main()
4646

4747

48-
// 客户访问调用者的call()方法...
48+
// 客户访问调用者的run()方法...
4949
// 调用者执行命令command...
50-
// 接收者的action()方法被调用...
50+
// 接收者的action()方法被调用...

0 commit comments

Comments
 (0)