【Golang】make和new区别,append

根据GO夜读学习go源码

源码:
// 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. The specification of the result depends on
// the type:
//  Slice: The size specifies the length. The capacity of the slice is
//  equal to its length. A second integer argument may be provided to
//  specify a different capacity; it must be no smaller than the
//  length. For example, make([]int, 0, 10) allocates an underlying array
//  of size 10 and returns a slice of length 0 and capacity 10 that is
//  backed by this underlying array.
//  Map: An empty map is allocated with enough space to hold the
//  specified number of elements. The size may be omitted, in which case
//  a small starting size is allocated.
//  Channel: The channel's buffer is initialized with the specified
//  buffer capacity. If zero, or the size is omitted, the channel is
//  unbuffered.
// make内置函数用于分配和初始化slice、map或chan(仅限于)类型的对象。与new一样,第一个参数是类型,而不是值。与new不同,make的返回类型与其参数的类型相同,而不是指向它的指针。返回结果的规范取决于传入的类型:
// 切片:大小指定长度。切片的容量等于其长度。可以提供第二个整数参数来指定不同的容量;它不能小于长度。例如,make([]int,0,10)分配一个大小为10的底层数组,并返回一个长度为0、容量为10的切片,该切片由这个底层数组支持。
// 映射:为空映射分配足够的空间来容纳指定数量的元素。可以省略大小,在这种情况下,分配小的起始大小。
// 通道:使用指定的缓冲区容量初始化通道的缓冲区。如果为零,或者忽略了大小,则通道是无缓冲的。
func make(t Type, size ...IntegerType) Type

// 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.
// new内置函数分配内存。第一个参数是类型,而不是值,返回的值是指向该类型的新分配的零值的指针。
func new(Type) *Type
// 
Demo
package main

import (
    "fmt"
)

func main() {
    p := new([]int)
    fmt.Println(*p) // p !=nil ,指向该类型的新分配的零值的指针。
        t := make([]int, 0, 10) // t !=nil
    // new([]int)和make([]int, 0)有什么区别?
    // 如果make第二个参数(容量)不是0的话,会初始化对应的默认零值填充数组。
    // 而new初始化的对象也可以指定容量比如 new([10]int)和make([]int,10)初始化的容量相同,但是new是返回的是指针而make不是!!!
    fmt.Println(t)
}
Output
// output
// 可以很明显的看出new函数返回的是一个指针,类型是传递的类型
&[]
// make 返回的是一个类型对象,而不是像new一样返回一个指针
[0 0 0 0 0 0 0 0 0 0]

Append

Demo

在往slice里append元素是可以发现其有不同的地方,看下面代码

package main

import "fmt"

func main() {
    p := make([]int, 0,10)
    p = append(p, 1)
    fmt.Println(p)
    t := make([]int, 10, 10)
    t = append(t, 1)
    fmt.Println(t)
}
Output
// output
[1]
[0 0 0 0 0 0 0 0 0 0 1]

咦,这个时候不知道的同学可能会问,同样是追加为什么两个输出不一样呢?
注意看第5行代码,初始话的是容量为0的Slice,append函数是在数据的最后面追加元素,我们看下源码:

源码
// The append built-in function appends elements to the end of a slice. If
// it has sufficient capacity, the destination is resliced to accommodate the
// new elements. If it does not, a new underlying array will be allocated.
// Append returns the updated slice. It is therefore necessary to store the
// result of append, often in the variable holding the slice itself:
//  slice = append(slice, elem1, elem2)
//  slice = append(slice, anotherSlice...)
// As a special case, it is legal to append a string to a byte slice, like this:
//  slice = append([]byte("hello "), "world"...)
// append内置函数将元素追加到切片的末尾。 如果具有足够的容量,则将目标切片为容纳新元素。 如果没有,将分配一个新的底层数组。
// 追加返回更新的切片。 因此,有必要将添加的结果存储在通常包含切片本身的变量中:
//     slice =append(slice,elem1,elem2)
//     slice = append(slice,anotherSlice ...)
// 作为一种特殊情况,将字符串附加到字节片是合法的,如下所示:
//     slice = append([] byte("hello"), "world" ...)
func append(slice []Type, elems ...Type) []Type

也就是说当make中第二个参数(第二个参数比作初始化的小,把第三个参数比做数据的容量),容量指的是当前切片可以容纳多少个元素不用扩容,长度是指当前切片有多个元素。比如make([]int,10,50) 也就是说当前切片容量为50个元素,一共有10个默认值被初始化零值,所以说长度小于容量时是不会发生扩容的。
如果append元素当前长度不大于当前容量,是不会创建新的切片的,咱们可以看下内存地址。

package main

import "fmt"

func main() {
    t := make([]int, 1,10)
    fmt.Println(t)
    fmt.Println(&t[0])
    t = append(t, 1)
    fmt.Println(t)
    fmt.Println(&t[0])
    //case 2 追加超过容量
    p := make([]int, 10, 10)
    fmt.Println(p)
    fmt.Println(&p[0])
    p = append(p, 1)
    fmt.Println(p)
    fmt.Println(&p[0])
}
// output
[0]
0xc00009c050
[0 1]
0xc00009c050

// case2 output
[0 0 0 0 0 0 0 0 0 0]
0xc00001e050
[0 0 0 0 0 0 0 0 0 0 1]
0xc0000140a0

通过以上测试可以知道append函数是往当前切片长度最后追加,如果追加后长度超过了容量将分配一个新的底层数组。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容