go语言中定义一个struct后,如何把一个变量的值传入

useradmin · 2017-12-25 06:43:11 · 1802 次点击 · 大约8小时之前 开始浏览    置顶
这是一个创建于 2017-12-25 06:43:11 的主题,其中的信息可能已经有所发展或是发生改变。

举例子,type Personalinformation_send struct { name string age int home string total int } 如果这个total是个变量,在程序里是需要计算的,最后怎么传入这个struct中去啊?新手求教


有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1802 次点击  
加入收藏 微博
5 回复  |  直到 2017-12-26 07:02:35
jthmath
jthmath · #1 · 7年之前
var ps Personalinformation_send
ps.total += 1
dong-hao
dong-hao · #2 · 7年之前

没看懂你想怎么传入?解释得更详细些

humengqiao
humengqiao · #3 · 7年之前

var total = 1 ps := Personalinformation_send{total:total}这样?

juntaran
juntaran · #4 · 7年之前
var personSend  Personalinformation_send

tmpTotal := 2*2

personSend.total = tmpTotal

fmt.Println(personSend)

注意 go 的对外暴露,注意定义结构体的时候,total 首字母是否大些

juntaran
juntaran · #5 · 7年之前
juntaranjuntaran #4 回复

``` go var personSend Personalinformation_send tmpTotal := 2*2 personSend.total = tmpTotal fmt.Println(personSend) ``` 注意 go 的对外暴露,注意定义结构体的时候,total 首字母是否大些

是否大写

添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传