举例子,type Personalinformation_send struct {
name string
age int
home string
total int
}
如果这个total是个变量,在程序里是需要计算的,最后怎么传入这个struct中去啊?新手求教
``` go
var personSend Personalinformation_send
tmpTotal := 2*2
personSend.total = tmpTotal
fmt.Println(personSend)
```
注意 go 的对外暴露,注意定义结构体的时候,total 首字母是否大些
#4
更多评论