运行此代码时出现超出范围的错误:
去:
type Ping struct {
Content []aContent
}
type aContent struct {
Type string
Id string
Created_at int64
}
var p Ping
func main() {
f := Ping{Content: []aContent{{Type: "Hello", Id: "asdf"}}}
fmt.Println(f)
fmt.Println(p.Content[0].Created_at) //what's wrong?
}
怎么了?代码可以在这里找到:http : //play.golang.org/p/uZm5LaUuGW
神不在的星期二
相关分类