我不理解container/heap软件包中的以下代码片段。
type Interface interface {
sort.Interface //Is this line a method?
Push(x interface{})
Pop() interface{}
}
相关分类