Go语言的map如何判断key是否存在 (推荐学习:go)
if _, ok := map[key]; ok { //存在 }
另外golang也没有提供item是否在array当中的判断方法,如果程序里面频繁用到了这种判断,可以将array转化为以array当中的成员为key的map再用上面的方法进行判断,这样会提高判断的效率。
判断方式为value,ok := map[key], ok为true则存在
package main import "fmt" func main() { demo := map[string]bool{ "a": false, } //错误,a存在,但是返回false fmt.Println(demo["a"]) //正确判断方法 _, ok := demo["a"] fmt.Println(ok) }
输出
false true
以上是golang map判断key是否存在的详细内容。更多信息请关注PHP中文网其他相关文章!