Ich wollte, dass Go ein Array in die Karte einfügt, also mein Memo
package main
import "fmt"
type Hoge struct {
Say string
}
func main() {
a := map[string][]Hoge{}
a["hoge"] = append(a["hoge"], Hoge{Say: "hello1"})
a["hoge"] = append(a["hoge"], Hoge{Say: "hello2"})
a["hoge1"] = append(a["hoge1"], Hoge{Say: "hello3"})
fmt.Println(a)
}
Wenn du oben rennst
map[hoge:[{hello1} {hello2}] hoge1:[{hello3}]]
Array ist im Wert von map like enthalten
Recommended Posts