在线时间:8:00-16:00
132-9538-2358
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、声明初始化Map
var testMap map[string]string testMap = make(map[string]string)
2、判断Map是否有指定键
if _, ok := testMap[key]; ok { }
3、新添或更新指定键元素
testMap[key] = newItem
4、删除指定键元素
delete(testMap, key)
评论
请发表评论