我不明白container/heap
包中的以下代码片段。
type Interface interface {
sort.Interface //Is this line a method?
Push(x interface{})
Pop() interface{}
}
这是一个类型声明。
heap.Interface
接口嵌入sort.Interface
接口。
您可以将其视为一种继承/专业化:这意味着实现heap.Interface
接口的结构被定义为实现sort.Interface
方法和Push
andPop
方法的结构。
Effective Go 中描述了接口嵌入:http: //golang.org/doc/effective_go.html#embedding