只要一个类里面实现了接口里的方法,就可以将接口和类的实例绑定,并调用对应类的方法实现
type Sleeper interface {
Sleep()
}
type Dog struct {
2022-05-26