判断方式为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
Posted 无涯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go语言的map如何判断key是否存在相关的知识,希望对你有一定的参考价值。
判断方式为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
以上是关于Go语言的map如何判断key是否存在的主要内容,如果未能解决你的问题,请参考以下文章