Go语言爱好者周刊:第 65 期

polaris · · 9306 次点击
8楼 <a href="/user/polaris" title="@polaris">@polaris</a> ``` 0x11421a2c,0x11404170 [1 2 3] [3 4 5] 0x11421a2c,0x11404170 ``` 这是我的输出结果 我的程序: ``` func main() { jsonStr1 := `{&#34;age&#34;: 14,&#34;name&#34;: &#34;potter&#34;, &#34;child&#34;:[1,2,3]}` a := AutoGenerated{} json.Unmarshal([]byte(jsonStr1), &amp;a) aa := a.Child fmt.Printf(&#34;%p,%p\n&#34;, &amp;a.Child, &amp;aa) fmt.Println(aa) jsonStr2 := `{&#34;age&#34;: 12,&#34;name&#34;: &#34;potter&#34;, &#34;child&#34;:[3,4,5,7,8,9]}` json.Unmarshal([]byte(jsonStr2), &amp;a) fmt.Println(aa) fmt.Printf(&#34;%p,%p\n&#34;, &amp;a.Child, &amp;aa) } ```
#9
更多评论
1楼 <a href="/user/ldfd25" title="@ldfd25">@ldfd25</a> 为啥子呢?
#2