举例子,type Personalinformation_send struct { name string age int home string total int } 如果这个total是个变量,在程序里是需要计算的,最后怎么传入这个struct中去啊?新手求教
有疑问加站长微信联系(非本文作者)

举例子,type Personalinformation_send struct { name string age int home string total int } 如果这个total是个变量,在程序里是需要计算的,最后怎么传入这个struct中去啊?新手求教
有疑问加站长微信联系(非本文作者)
入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889
`单行代码`
没看懂你想怎么传入?解释得更详细些
var total = 1 ps := Personalinformation_send{total:total}这样?
注意 go 的对外暴露,注意定义结构体的时候,total 首字母是否大些
是否大写