区别

介绍

  1. Go语言中 new 和 make 是两个内置函数,主要用来创建并分配类型的内存。
  2. new 和 make 主要区别如下:
    1. make:
      1. 只能用来分配及初始化类型为 slice、map、chan 的数据。
      2. 返回引用,即 Type。
      3. make 分配空间后,会进行初始化。
    2. new:
      1. 可以分配任意类型的数据。
      2. 返回的是指针,即类型 *Type。
      3. new 分配的空间被清零。

new

  1. new 函数只接受一个参数,这个参数是一个类型。
  2. new 函数会把分配的内存置为零,也就是类型的零值。
  3. 它返回的永远是类型的指针,指针指向分配类型的内存地址。
    1. // The new built-in function allocates memory. The first argument is a type,
    2. // not a value, and the value returned is a pointer to a newly
    3. // allocated zero value of that type.
    4. func new(Type) *Type
    示例
    ```go type Student struct { name string age int }

func main() { var s *Student s = new(Student) //分配空间 s.name = “dequan” fmt.Println(s) // &{dequan 0}

  1. var sum *int
  2. sum = new(int) //分配空间
  3. *sum = 98
  4. fmt.Println(*sum) // 98

}

  1. 如果我们不使用 new 函数为自定义类型分配空间(将第 8 行注释),就会报错:<br />**panic: **runtime error: invalid memory address or nil pointer dereference
  2. ---
  3. <a name="fJwGM"></a>
  4. ### make
  5. 1. make 也是用于内存分配的。
  6. 1. 它只用于 chanmap 以及 slice 的内存创建,而且它返回的类型就是这三个类型本身,而不是他们的指针类型,因为这三种类型就是引用类型,所以就没有必要返回他们的指针了。
  7. ```go
  8. // The make built-in function allocates and initializes an object of type
  9. // slice, map, or chan (only). Like new, the first argument is a type, not a
  10. // value. Unlike new, make's return type is the same as the type of its
  11. // argument, not a pointer to it. The specification of the result depends on
  12. // the type:
  13. // Slice: The size specifies the length. The capacity of the slice is
  14. // equal to its length. A second integer argument may be provided to
  15. // specify a different capacity; it must be no smaller than the
  16. // length, so make([]int, 0, 10) allocates a slice of length 0 and
  17. // capacity 10.
  18. // Map: An empty map is allocated with enough space to hold the
  19. // specified number of elements. The size may be omitted, in which case
  20. // a small starting size is allocated.
  21. // Channel: The channel's buffer is initialized with the specified
  22. // buffer capacity. If zero, or the size is omitted, the channel is
  23. // unbuffered.
  24. func make(t Type, size ...IntegerType) Type

示例
  1. s := make([]uint, 1, 10)
  2. fmt.Println(s) // [0]

原理

接下来我们将分别介绍一下 make 和 new 在初始化不同数据结构时的具体过程,我们会从编译期间和运行时两个不同的阶段理解这两个关键字的原理。

new

编译期的 SSA 代码生成阶段经过 callnew 函数的处理,如果请求创建的类型大小是 0,那么就会返回一个表示空指针的 zerobase 变量,在遇到其他情况时会将关键字转换成 newobject:

  1. func callnew(t *types.Type) *Node {
  2. if t.NotInHeap() {
  3. yyerror("%v is go:notinheap; heap allocation disallowed", t)
  4. }
  5. dowidth(t)
  6. if t.Size() == 0 {
  7. z := newname(Runtimepkg.Lookup("zerobase"))
  8. z.SetClass(PEXTERN)
  9. z.Type = t
  10. return typecheck(nod(OADDR, z, nil), ctxExpr)
  11. }
  12. fn := syslook("newobject")
  13. fn = substArgTypes(fn, t)
  14. v := mkcall1(fn, types.NewPtr(t), nil, typename(t))
  15. v.SetNonNil(true)
  16. return v
  17. }

哪怕当前变量是使用 var 进行初始化,在这一阶段也可能会被转换成 newobject 的函数调用并在堆上申请内存

  1. func walkstmt(n *Node) *Node {
  2. switch n.Op {
  3. case ODCL:
  4. v := n.Left
  5. if v.Class() == PAUTOHEAP {
  6. if prealloc[v] == nil {
  7. prealloc[v] = callnew(v.Type)
  8. }
  9. nn := nod(OAS, v.Name.Param.Heapaddr, prealloc[v])
  10. nn.SetColas(true)
  11. nn = typecheck(nn, ctxStmt)
  12. return walkstmt(nn)
  13. }
  14. case ONEW:
  15. if n.Esc == EscNone {
  16. r := temp(n.Type.Elem())
  17. r = nod(OAS, r, nil)
  18. r = typecheck(r, ctxStmt)
  19. init.Append(r)
  20. r = nod(OADDR, r.Left, nil)
  21. r = typecheck(r, ctxExpr)
  22. n = r
  23. } else {
  24. n = callnew(n.Type.Elem())
  25. }
  26. }
  27. }

当然这也不是绝对的,如果当前声明的变量或者参数不需要在当前作用域外生存,那么其实就不会被初始化在堆上,而是会初始化在当前函数的栈中并随着函数调用的结束而被销毁。

newobject 函数的工作就是获取传入类型的大小并调用 mallocgc 在堆上申请一片大小合适的内存空间并返回指向这片内存空间的指针:

  1. func newobject(typ *_type) unsafe.Pointer {
  2. return mallocgc(typ.size, typ, true)
  3. }


make

image.png
在编译期的类型检查阶段,Go语言其实就将代表 make 关键字的 OMAKE 节点根据参数类型的不同转换成了 OMAKESLICE、OMAKEMAP 和 OMAKECHAN 三种不同类型的节点,这些节点最终也会调用不同的运行时函数来初始化数据结构。