Go实操(三):Map使用 2021-02-03 编程 Go 约 115 字 预计阅读 1 分钟 文章目录 1.创建 2.插入 3.取值 4.key是否存在 【注意】最后更新于 March 7, 2023,文中内容可能已过时,请谨慎使用。 1.创建 1 countryMap = make(map[string]string) 2.插入 1 2 /* map 插入 key-value */ countryMap["ShengRI"] = "1988-04-09" 3.取值 1 2 3 4 5 /* 使用 key 输出 map 值 */ for country := range countryMap { fmt.Println("Capital of",country,"is",countryMap[country]) } 4.key是否存在 1 2 3 4 5 6 7 8 /* 查看元素在集合中是否存在 */ captial, ok := countryMap["ShengRI"] /* 如果 ok 是 true, 则存在,否则不存在 */ if(ok){ fmt.Println("Capital of United States is", captial) } else { fmt.Println("is not ok") } 文章作者 Learn Go 上次更新 2023-03-07