码迷,mamicode.com
首页 > 其他好文 > 详细

Go复习--field指针

时间:2019-09-14 00:49:26      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:ring   复习   field   --   str   指针   color   student   func   

type student struct {
    name string
    id int
}

func main() {
    stu := student{"wjc",11}
    test(&stu.id)
    fmt.Println(stu)

}

func test(id *int)  {
    *id++
}

指针也可以用于struct的field。

Go复习--field指针

标签:ring   复习   field   --   str   指针   color   student   func   

原文地址:https://www.cnblogs.com/wanjch/p/11517882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!