标签: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。
标签:ring 复习 field -- str 指针 color student func
原文地址:https://www.cnblogs.com/wanjch/p/11517882.html