在 go 中创建字符串切片的映射
create map of string slice in go
我正在尝试使用 GO 中的代码创建一个字符串切片映射
newMap := map [string][]string{
"first" : {
"good", "bad"
},
"second" : {
"top", "bottom"
}
}
好像不太对啊,有什么问题吗?
您必须在每个初始化列表的末尾添加逗号 ,
。
newMap := map [string][]string{
"first" : {
"good", "bad",
},
"second" : {
"top", "bottom",
},
}
您可以找到一个工作示例 here。
我正在尝试使用 GO 中的代码创建一个字符串切片映射
newMap := map [string][]string{
"first" : {
"good", "bad"
},
"second" : {
"top", "bottom"
}
}
好像不太对啊,有什么问题吗?
您必须在每个初始化列表的末尾添加逗号 ,
。
newMap := map [string][]string{
"first" : {
"good", "bad",
},
"second" : {
"top", "bottom",
},
}
您可以找到一个工作示例 here。