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)
2023-12-26 17:19:45
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)