您好,登錄后才能下訂單哦!
1、struct聲明:
type 標識符 struct {
Name string
Age int
Score int
}
2、struct 中字段訪問:和其他語言一樣,使用點
例子
type Student struct {
Name string
Age int
Score int
}
func main(){
var stu Student
stu.Name = "lilei"
stu.Age = 22
stu.Score = 20
fmt.Printf("name=%s age=%d score=%d",stu.Name,stu.Age,stu.Score)
}
3、struct定義的三種形式:
a: var stu Student
b: var stu Student = new(Student)
c: var stu Student = &Student{}
(1)其中b和c返回的都是指向結構體的指針,訪問形式如下
stu.Name、stu.Age和stu.Score 或者(stu).Name、(stu).Age、(*stu).Scroe
type Rect1 struct { Min, Max point}
type Rect2 struct { Min, Max *point}
type School struct {
Name School
Next *School
}
每個節點包含下一個節點的地址,這樣把所有的節點串起來,通常把鏈表的第一個節點叫做鏈表頭
type School struct {
Name string
Next *School
Prev *School
}
如果有兩個指針分別指向前一個節點和后一個節點叫做雙鏈表。
type School struct {
Name string
Left School
Right School
}
如果每個節點有兩個指針分別用來指向左子樹和右子樹,我們把這樣的結構叫做二叉樹
package model
type student struct {
Name string
Age int
}
func NewStudent(name string,age int) *student {
return &student{
Name:name,
Age:age,
}
}
package main
S := new(student)
S := model.NewStudent("tom",20)
type student struct {
Name string `json="name"`
Age string `json="age"`
}
type Car struct {
Name string
Age int
}
type Train struct {
Car
Start time.Time
int
}
type Car struct {
Name string
Age int
}
type Train struct {
Car
Start time.Time
Age int
}
type A struct {
a int
}
type B struct {
a int
b int
}
type C struct {
A
B
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。