获取不到map中struct对象的指针

__Golang__ · · 909 次点击
应该就是`每一个字都看得懂,连起来就不懂了`
#6
更多评论
这是因为stus["a"]的返回值不是固定的地址, 算不出来吧, 因为每次都要复制一次. 你如果把stus["a"]赋值给一个栈变量就可以了. ```go s := stus["a"] //p := stus["a"] //cannot take the address of stus["a"] p := &s // 这样就不会报错了 ```
#1