一种允许您初始化容量,一种允许您初始化值:// Initializes a map with space for 15 items before reallocationm := make(map[string]int32, 15)对比// Initializes a map with an entry relating the name "bob" to the number 5m := map[string]int{"bob": 5} 对于容量为 0 的空地图,它们是相同的,只是偏好。