go 语言 first argument to append must be slice
错误代码func TestSliceGrowing(t *testing.T) {s := [4]int{1, 2, 3, 4}for i :=0; i<10; i++ {s = append(s, i)t.Log(len(s), cap(s))}}报错代码s = append(s, i)原因:append的第一个参数必须是切片更正func TestSliceGrowing(t *testi
·
错误代码
func TestSliceGrowing(t *testing.T) {
s := [4]int{1, 2, 3, 4}
for i :=0; i<10; i++ {
s = append(s, i)
t.Log(len(s), cap(s))
}
}
报错代码
s = append(s, i)
原因:append的第一个参数必须是切片
更正
func TestSliceGrowing(t *testing.T) {
s := []int{1, 2, 3, 4}
for i :=0; i<10; i++ {
s = append(s, i)
t.Log(len(s), cap(s))
}
}
cap 的值在初始化的时候,如果切片没有初始值,则为1,如果有初始值,如上,则为元素个数len,在执行append后,如果len超过cap,则cap值变为原来的两倍。
func TestSliceCap(t *testing.T) {
arr := [5]int{1, 2, 3, 4, 5}
s := arr[:2]
t.Log(len(s), cap(s))
}
len :2, cap 5
cap = arr length - start index
我的公众号
更多推荐
已为社区贡献2条内容
所有评论(0)