判断key是否存在

1
2
3
4
m := map[string]int{}
if _,ok := m["a"]; ok {

}