## 概要 有时我们可能碰到定义成下面这样的结构体,结构体里某些属性是基础数据类型,更确切的说,是基础数据类型的指针类型。 ```golang type Student struct { name string `json:"name"` age *int `json:"
概要 有时我们可能碰到定义成下面这样的结构体,结构体里某些属性是基础数据类型,更确切的说,是基础数据类型的指针类型。 type Student struct { name string `json:"name"` age *int `json:"age"` // age 是整型指针 } 1. 2. 3. 4. 不可行的写法 此时该如何对这种成员属性进行赋值呢,下面两种写法是错...