golang语言中struct的初始化方式

前端之家收集整理的这篇文章主要介绍了golang语言中struct的初始化方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
// 先定义结构体
type Rect struct {
	width  int
	height int
}

// 再初始化结构体
rect1 := new(Rect)
rect2 := &Rect{}
rect3 := &Rect{10,20}
rect4 := &Rect{width:10,height:20}

// 定义 + 初始化同时进行
rect5 := &struct{width int,height int}{10,20}
原文链接:https://www.f2er.com/go/190572.html

猜你在找的Go相关文章