我有以下代码块:
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 中用于包装结构的正确习惯用法。(作品)