這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
切片與資料
學golang時,書上提過從數組產生切片時,切片實際上是有一個指標指向那個數組,所以對切片和數組的操作會相互影響。
好奇的是切片是變長的,當切片超過原生數組長度後,還會保持那個指標麼,或者有更進階的方式,今天試了一下,比較失望的是,對切片執行append操作,當超過該切片的capacity時,go會分配一個新的數組給切片,兩者從此分道揚鑣。
append操作會在切片底層數組不夠時分配新數組,所以使用切片的話,最好還是得計算要用的空間大小。
可能是最近受函數式編程的immutable variable影響,總覺得切片跟數組共用同一片記憶體會有點危險。
函數式語言中有大量的複製操作,處於效能及記憶體考慮,他們的集合實現應該跟普通的集合不一樣,有空去看看它們的實現。
New and Make
Go has two data structure creation functions: new and make. The distinction is a common early point of confusion but seems to quickly become natural. The basic distinction is that new(T) returns a *T, a pointer that Go programs can dereference implicitly (the black pointers in the diagrams), while make(T, args) returns an ordinary T, not a pointer. Often that T has inside it some implicit pointers (the gray pointers in the diagrams). New returns a pointer to zeroed memory, while make returns a complex structure.
簡單的說,new返回指標,make傳回值,但這個值底層通常含有指標。
以上英語部分轉自http://research.swtch.com/godata