设计模式 command_test 实现

  • 2022-07-21
  • 浏览 (1077)

golang 设计模式 command_test 代码实现

package command

func ExampleCommand() {
	mb := &MotherBoard{}
	startCommand := NewStartCommand(mb)
	rebootCommand := NewRebootCommand(mb)

	box1 := NewBox(startCommand, rebootCommand)
	box1.PressButton1()
	box1.PressButton2()

	box2 := NewBox(rebootCommand, startCommand)
	box2.PressButton1()
	box2.PressButton2()
	// Output:
	// system starting
	// system rebooting
	// system rebooting
	// system starting
}

目录

go 设计模式

相关文章

命令模式

设计模式 command 实现

0  赞