“Idź z mapy” Kod odpowiedzi

Zainicjuj mapę w Golang

// By default maps in Go behaves like a default dictionary in python
m := make(map[string]int)

m["Dio"] = 3
m["Jonathan"] = 1
Joseph Joestar

idź Dodaj do mapy

m := make(map[string]int)
m["numberOne"] = 1
m["numberTwo"] = 2
Navid2zp

Idź z mapy

var id string
var ok bool
if x, found := res["strID"]; found {
     if id, ok = x.(string); !ok {
        //do whatever you want to handle errors - this means this wasn't a string
     }
} else {
   //handle error - the map didn't contain this key
}
Average Angelfish

Odpowiedzi podobne do “Idź z mapy”

Pytania podobne do “Idź z mapy”

Więcej pokrewnych odpowiedzi na “Idź z mapy” w Go

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu