Go语言:new还是make?到底该如何选择?
2021/7/27 8:05:49
本文主要是介绍Go语言:new还是make?到底该如何选择?,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
new 函数
我们直接声明一个指针类型的变量 p ,然后对改变量的值进行修改,为“微客鸟窝”:
func main() {
var p *string
*p = "微客鸟窝"
fmt.Println(*p)
}
程序运行,会报错:
panic: runtime error: invalid memory address or nil pointer dereference
这是因为指针类型的变量如果没有分配内存,默认值是零值 nil
。它没有指向的内存,所以无法使用。
如果要使用,给它分配一块内存就可以了,可以使用 new函数:
func main() {
var p *string
p = new(string) //new函数进行内存分配
*p = "微客鸟窝"
fmt.Println(*p)
}
上面示例便可以正常运行,内置函数 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
作用:
根据传入的类型申请一块内存,然后返回指向这块内存的指针
指针指向的数据就是该类型的零值
比如传入的类型是 string,那么返回的就是 string 指针,这个 string 指针指向的数据就是空字符串
变量初始化
声明完变量,对变量进行赋值,就是所谓的初始化。
string 类型变量初始化:
var s string = "微客鸟窝" s1 := "微客鸟窝"
指针变量初始化
我们可以定义一个函数来进行初始化指针变量
package main
import "fmt"
func main() {
pp:=NewPerson("微客鸟窝",18)
fmt.Println(pp) //&{微客鸟窝 18}
}
type person struct {
name string
age int
}
func NewPerson(name string,age int) *person{
p := new(person)
p.name = name
p.age = age
return p
}
make 函数
上文我们已经了解到,在使用 make 函数创建 map 的时候,其实调用的是 makemap 函数:
// makemap implements Go map creation for make(map[k]v, hint).
func makemap(t *maptype, hint int, h *hmap) *hmap{
//省略无关代码
}
makemap 函数返回的是 *hmap 类型,而 hmap 是一个结构体,它的定义如下:
// A header for a Go map.
type hmap struct {
// Note: the format of the hmap is also encoded in cmd/compile/internal/gc/reflect.go.
// Make sure this stays in sync with the compiler's definition.
count int // # live cells == size of map. Must be first (used by len() builtin)
flags uint8
B uint8 // log_2 of # of buckets (can hold up to loadFactor * 2^B items)
noverflow uint16 // approximate number of overflow buckets; see incrnoverflow for details
hash0 uint32 // hash seed
buckets unsafe.Pointer // array of 2^B Buckets. may be nil if count==0.
oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
nevacuate uintptr // progress counter for evacuation (buckets less than this have been evacuated)
extra *mapextra // optional fields
}
可以看到, map 关键字其实非常复杂,它包含 map 的大小 count、存储桶 buckets 等。要想使用 hmap ,只是通过简单的 new 函数来返回一个 *hmap 就可以实现的,还需要对其进行初始化,这就是 make 所发挥的作用:
m := make(map[string]int,10)
我们发现 make 函数跟上面的自定义的 NewPerson 函数很像,其实 make 函数就是 map 类型的工厂函数,它可以根据传递给它的键值对类型,创建不同类型的 map ,同时可以初始化 map 的大小。
make 函数不只是 map 类型的工厂函数,还是 chan、slice 的工厂函数。它同时可以用于 slice、chan 和 map 这三种类型的初始化。
new 函数只用于分配内存,且把内存清零,不太常用。
make 函数只用于 slice、chan 和 map 这三种内置类型的创建和初始化,因为这三种类型结构比较复杂,比如 slice 要提前初始化好内部元素的类型,slice 的长度和容量等。
作者:微客鸟窝
链接:https://juejin.cn/post/6987984548663394335
来源:掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
这篇关于Go语言:new还是make?到底该如何选择?的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15SendGrid 的 Go 客户端库怎么实现同时向多个邮箱发送邮件?-icode9专业技术文章分享
- 2024-11-15SendGrid 的 Go 客户端库怎么设置header 和 标签tag 呢?-icode9专业技术文章分享
- 2024-11-12Cargo deny安装指路
- 2024-11-02MongoDB项目实战:从入门到初级应用
- 2024-11-01随时随地一键转录,Google Cloud 新模型 Chirp 2 让语音识别更上一层楼
- 2024-10-25Google Cloud动手实验详解:如何在Cloud Run上开发无服务器应用
- 2024-10-24AI ?先驱齐聚 BAAI 2024,发布大规模语言、多模态、具身、生物计算以及 FlagOpen 2.0 等 AI 模型创新成果。
- 2024-10-20goland工具下,如修改一个项目的标准库SDK的版本-icode9专业技术文章分享
- 2024-10-17Go学习:初学者的简单教程
- 2024-10-17Go学习:新手入门完全指南