Je voulais que Go mette un tableau en valeur dans la carte, donc mon mémo
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)
}
Si tu vas courir dessus
map[hoge:[{hello1} {hello2}] hoge1:[{hello3}]]
Array est inclus dans la valeur de map comme
Recommended Posts