Go复习--field指针

Posted wanjch

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go复习--field指针相关的知识,希望对你有一定的参考价值。

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指针的主要内容,如果未能解决你的问题,请参考以下文章

C++ 指针复习

Go语言学习——复习函数panicrecover

双指针问题复习

c 复习

c 复习

c 复习