其他分享
首页 > 其他分享> > Go入门笔记29-Map使用

Go入门笔记29-Map使用

作者:互联网

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)

标签:Map,ok,string,map,testMap,29,key,Go
来源: https://www.cnblogs.com/zhaogaojian/p/15187226.html