我有以下代码块:
package main
import (
"fmt"
"container/list"
)
type Foo struct {
foo list //want a reference to the list implementation
//supplied by the language
}
func main() {
//empty
}
编译时我收到以下消息:
使用不在选择器中的包列表
我的问题是,如何list在 a 中引用struct?或者这不是 Go 中包装结构的正确习惯用法。(作品)
蓝山帝景
相关分类