在go

时间:2015-06-29 09:40:42

标签: dictionary go slice

我尝试使用GO

中的代码创建字符串切片的映射
newMap := map [string][]string{
    "first" : {
        "good", "bad"
    },
    "second" : {
        "top", "bottom"
    }
}

似乎不是正确的方法,它有什么问题?

1 个答案:

答案 0 :(得分:5)

您必须在每个初始化列表的末尾添加逗号,

newMap := map [string][]string{
    "first" : {
        "good", "bad",
    },
    "second" : {
        "top", "bottom",
    },
}

您可以找到一个有效的例子here