golang实验代码 package main import("fmt") type Stu struct{ name string age int } func (stu *Stu)NewAge(age int)(PriAge int){ PriAge =age stu.age = age return } func (stu Stu)NewName(name string)(PriName string){ PriName = name stu.name = name return…
package main import ( "encoding/json" "fmt" "reflect" ) type Movie struct { Title string `json:"title"` Year int `json:"year"` Price int `json:"rmb"` Actors []string `json:"actors"` } f…
结构体: 1.用来自定义复杂数据结构 2.struct里面可以包含多个字段(属性) 3.struct类型可以定义方法,注意和函数的区分 4.strucr类型是值类型 5.struct类型可以嵌套 6.go语言中没有class类型,只有struct类型 struct声明: type 标识符 struct{ field1 type field2 type } 例子: type Student struct{ Name string Age int Score int } struct中字段访问,…