判斷方式為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
判斷方式為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
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。