我尝试使用GO
中的代码创建字符串切片的映射newMap := map [string][]string{
"first" : {
"good", "bad"
},
"second" : {
"top", "bottom"
}
}
似乎不是正确的方法,它有什么问题?
答案 0 :(得分:5)
您必须在每个初始化列表的末尾添加逗号,
。
newMap := map [string][]string{
"first" : {
"good", "bad",
},
"second" : {
"top", "bottom",
},
}
您可以找到一个有效的例子here。