私はGoを初めて使用し、goで構造体配列を作成して初期化します。私のコードはこんな感じ
type node struct {
name string
children map[string]int
}
cities:= []node{node{}}
for i := 0; i<47 ;i++ {
cities[i].name=strconv.Itoa(i)
cities[i].children=make(map[string]int)
}
次のエラーが表示されます。
panic: runtime error: index out of range
goroutine 1 [running]:
panic(0xa6800, 0xc42000a080)
助けてください。 TIA :)
1つの要素(空のノード)を持つノードのスライスとして都市を初期化します。
cities := make([]node,47)
を使用して固定サイズに初期化するか、空のスライスに初期化して、append
で初期化できます。
cities := []node{}
for i := 0; i<47 ;i++ {
n := node{name: strconv.Itoa(i), children: map[string]int{}}
cities = append(cities,n)
}
スライスがどのように機能するかについて少し不安がある場合は、必ず この記事 を読むことをお勧めします。
これは私のために働いた
type node struct {
name string
children map[string]int
}
cities:=[]*node{}
city:=new(node)
city.name=strconv.Itoa(0)
city.children=make(map[string]int)
cities=append(cities,city)
for i := 1; i<47 ;i++ {
city=new(node)
city.name=strconv.Itoa(i)
city.children=make(map[string]int)
cities=append(cities,city)
}