通过判断ok的值,我们可以确定map中是否包含某个key。 方法二:使用for range遍历 除了使用逗号ok idiom外,我们还可以使用for range遍历map并判断是否存在某个key。代码如下: funcmain(){ m :=make(map[string]int) m["foo"] =42key :="foo"found :=falsefork :=rangem {ifk == key { found =truebreak...
版主 697 声望 / PHP | GO | NO @ 数字游民 还可以看这里 17.1. 关于逗号 ok 模式 2年前 评论 举报 Tacks 课程读者 477 声望 if value, is_ok = map1[key1]; is_ok { // 存在 key1 } 1年前 评论 举报 讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明...
通过判断ok的值,我们可以确定map中是否包含某个key。 方法二:使用for range遍历 除了使用逗号ok idiom外,我们还可以使用for range遍历map并判断是否存在某个key。代码如下: funcmain(){m:=make(map[string]int)m["foo"]=42key:="foo"found:=falsefork:=rangem{ifk==key{found=truebreak}}iffound{fmt.Prin...