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。