2016-07-18 1 views
0

Ich will die Schaffung dict in go Sprache erstellen, aber ihr Wert enthält Listengo - Wörterbuch mit Werten als Liste

dict= { 
"A" : ["1", "2"], 
"B" : ["3", "4"] 
} 

Wie können wir das gleiche in go schaffen?

+4

http://stackoverflow.com/questions/12677934/create-a-golang-map-of-lists – abhink

Antwort

3

Sie eine Karte von Zeichenfolge erstellen können von Strings zu schneiden:

func main() { 

    m := make(map[string][]string) 

    // Each string in the m maps to a string slice 
    m["A"] = []string{"1", "2"} 
    m["B"] = []string{"3", "4"} 
    fmt.Println(m["A"]) 

    // Adding to the list of a particular key 
    m["A"] = append(m["A"], "10") 

    // Creating a new key can be done similarly 
    m["C"] = append(m["C"], "100") 

    fmt.Printf("%+v\n", m) 

    fmt.Printf("m[\"C\"] = %#v\n", m["C"]) // m["C"] = []string{"100"} 
}