Golang设计模式之命令模式 Jackey Golang 2021-01-07 2,652 次浏览 Golang, 命令模式, 设计模式 创建文件Command.go package command type Command interface { Execute() // 执行 } 创建文件motherBoard.go package command import "fmt" type MotherBoard struct { } func (*MotherBoard) WashClothes()...