首页 > 代码库 > Golang:测试map是否存在

Golang:测试map是否存在

请看这个url:http://www.du52.com/text.php?id=561

    if v, ok := m1["a"]; ok {        fmt.Println(v)    } else {        fmt.Println("Key Not Found")    }

 

Golang:测试map是否存在