您好,登录后才能下订单哦!
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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。