課題
A Tour of Go
のAppending to a slice
にて。
append()
関数でスライスに要素を追加したとき、そのスライスの容量の増加量が余計に多いです。
詳しくは、コードの19行目のコメントで印がつけてある箇所で、なぜ容量2のスライスに3つの要素を追加するとそのスライスの容量が6になるのでしょうか?要素数は素直に5になるのに、容量は6になる。不思議です。
コード
Go
1// append.go 2package main 3 4import "fmt" 5 6func main() { 7 var s []int 8 printSlice(s) 9 10 // append works on nil slices. 11 s = append(s, 0) 12 printSlice(s) 13 14 // The slice grows as needed. 15 s = append(s, 1) 16 printSlice(s) 17 18 // We can add more than one element at a time. 19 s = append(s, 2, 3, 4) // <- ここが問題の箇所 20 printSlice(s) 21} 22 23func printSlice(s []int) { 24 fmt.Printf("len=%d cap=%d %v\n", len(s), cap(s), s) 25} 26
出力
len=0 cap=0 [] len=1 cap=1 [0] len=2 cap=2 [0 1] len=5 cap=6 [0 1 2 3 4] // <- ここが問題の箇所
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/02 06:25 編集