参见英文答案 >
Creating map with/without make1个答案由于地图是参考类型。有什么区别:?
m := make(map[string]int32)
和
m := map[string]int32{}
一个允许您初始化容量,一个允许您初始化值:
原文链接:https://www.f2er.com/go/187053.html// Initializes a map with space for 15 items m := make(map[string]int32,15)
VS
// Initializes a map with an entry relating the name "bob" to the number 5 m := map[string]int{"bob": 5}
对于容量为0的空地图,它们是相同的,只是偏好。