从零学习 Go 语言(18):关键字 make 和 new 的区别?

2020-07-08 00:00:00 函数 返回 初始化 类型 指针
1. new 函数

在官方文档中,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

相关文章