Hi,你們好,我是明哥。git
在本身學習 Golang 的這段時間裏,我寫了詳細的學習筆記放在個人我的微信公衆號 《Go編程時光》,對於 Go 語言,我也算是個初學者,所以寫的東西應該會比較適合剛接觸的同窗,若是你也是剛學習 Go 語言,不防關注一下,一塊兒學習,一塊兒成長。github
個人在線博客:golang.iswbm.com 個人 Github:github.com/iswbm/GolangCodingTimegolang
在官方文檔中,new 函數的描述以下 編程
// The new built-in function allocates memory. The first argument is a type,
// not a value, and the value returned is a pointer to a newly
// allocated zero value of that type.
func new(Type) *Type複製代碼
能夠看到,new 只能傳遞一個參數,該參數爲一個任意類型,能夠是Go語言內建的類型,也能夠是你自定義的類型數組
那麼 new 函數到底作了哪些事呢:微信
舉個例子函數
import "fmt"
type Student struct {
name string
age int
}
func main() {
// new 一個內建類型
num := new(int)
fmt.Println(*num) //打印零值:0
// new 一個自定義類型
s := new(Student)
s.name = "wangbm"
}複製代碼
在官方文檔中,make 函數的描述以下學習
//The make built-in function allocates and initializes an object //of type slice, map, or chan (only). Like new, the first argument is // a type, not a value. Unlike new, make's return type is the same as // the type of its argument, not a pointer to it.ui
func make(t Type, size ...IntegerType) Typespa
翻譯一下注釋內容
注意,由於這三種類型是引用類型,因此必須得初始化(size和cap),可是不是置爲零值,這個和new是不同的。
舉幾個例子
//切片
a := make([]int, 2, 10)
// 字典
b := make(map[string]int)
// 通道
c := make(chan int, 10)複製代碼
new:爲全部的類型分配內存,並初始化爲零值,返回指針。
make:只能爲 slice,map,chan 分配內存,並初始化,返回的是類型。
另外,目前來看 new 函數並不經常使用,你們更喜歡使用短語句聲明的方式。
a := new(int)
a = 1
// 等價於
a := 1複製代碼
可是 make 就不同了,它的地位無可替代,在使用slice、map以及channel的時候,仍是要使用make進行初始化,而後才能夠對他們進行操做。
系列導讀
24. 超詳細解讀 Go Modules 前世此生及入門使用