type ShopId int32
var _shop_id *ShopId
_shop_id = &ShopId(1000)
无法这样写,一定要分开写。
type ShopId int32
var _shop_id *ShopId
___shop_id := ShopId(1000)
_shop_id = &___shop_id
为什么啊?
有疑问加站长微信联系(非本文作者)
有疑问加站长微信联系(非本文作者)
入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889
`单行代码`