初级会员
  • 第 57449 位会员
  • git-zjx
  • 赵加兴
  • 2020-10-23 09:44:10
  • Offline
  • 19 72

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 评论了博文 golang随机字符串
    ![image.png](https://static.studygolang.com/210901/42dc0ed42c129ec24236cf449b3d269f.png)
  • #13 @polaris 哦哦,涨知识了
  • ![image.png](https://static.studygolang.com/201023/8c161f121097bc203acd2a1002c999ed.png) 就是这块的
  • #10 @polaris 看那个地址,跟你说的不一样
  • 8楼 @polaris ``` 0x11421a2c,0x11404170 [1 2 3] [3 4 5] 0x11421a2c,0x11404170 ``` 这是我的输出结果 我的程序: ``` func main() { jsonStr1 := `{"age": 14,"name": "potter", "child":[1,2,3]}` a := AutoGenerated{} json.Unmarshal([]byte(jsonStr1), &a) aa := a.Child fmt.Printf("%p,%p\n", &a.Child, &aa) fmt.Println(aa) jsonStr2 := `{"age": 12,"name": "potter", "child":[3,4,5,7,8,9]}` json.Unmarshal([]byte(jsonStr2), &a) fmt.Println(aa) fmt.Printf("%p,%p\n", &a.Child, &aa) } ```