Madman · 2019-01-09T13:15:00Z Go基础|第9章:map Go 语言里用映射用来处理具有键值对结构的数据,可以使用 map literal 或 make 函数来初始化映射。注意映射的零值为 nil,不能给它添加键值对,否则会报编译错误 map make() golang