1 回答
TA贡献1830条经验 获得超3个赞
问题是您正在迭代地图并同时更改它,但期望迭代不会看到您所做的事情。代码的相关部分是:
for k, v := range a {
title := strings.Title(k)
a[title] = a[k]
delete(a, k)
}
因此,如果映射有{"hello":2, "world":3},并假设键按该顺序迭代。第一次迭代后,您现在拥有:
{"world":3, "Hello":2}
下一次迭代:
{"World":3, "Hello":2}
下一次迭代查看“Hello”,它已经大写,因此您再次将其大写,然后删除它,最终得到:
{"World":3}
您可能想要生成一个新的映射,而不是覆盖现有的映射,然后返回该映射,以便调用者可以使用它。
func main() {
a := make(map[string]interface{})
a["start"] = map[string]interface{}{
"hello": 2,
"world": 3,
"here": map[string]interface{}{
"baam": 123,
"boom": "dsd",
},
}
a=printMap(a)
fmt.Println(a)
}
func printMap(a map[string]interface{}) map[string]interface{} {
newMap:=map[string]interface{}{}
for k, v := range a {
switch v.(type) {
case map[string]interface{}:
newMap[k]=printMap(v.(map[string]interface{}))
default:
title := strings.Title(k)
newMap[title] = a[k]
}
}
return newMap
}
- 1 回答
- 0 关注
- 101 浏览
添加回答
举报