释放双眼,带上耳机,听听看~!
在定义了Rect类型后,该如何创建并初始化Rect类型的对象实例呢?这可以通过如下几种方法实现:
1
2 1rect1 := new(Rect)
2
1
2 1rect2 := &Rect{}
2
1
2 1rect3 := &Rect{0, 0, 100, 200}
2
1
2 1rect4 := &Rect{width: 100, height: 200}
2
1
2 1 在Go语言中,未进行显式初始化的变量都会被初始化为该类型的零值,例如bool类型的零值为false,int类型的零值为0,string类型的零值为空字符串。
2
在Go语言中没有构造函数的概念,对象的创建通常交由一个全局的创建函数来完成,以NewXXX来命名,表示“构造函数”:
1
2 1func NewRect(x, y, width, height float64) *Rect {
2
1
2 1 return &Rect(x, y, width, height)
2
1
2 1}
2