最习惯的使用interface 可能就是任意参数类型吧.然而,interface使用还可以有很多方式哟.
go interface定义一个 interface
type Job interface {
Run()
}
定义一个
2019-01-31