Golang之切片Slice


// 创建切片
var slice1 []int
slice2 := []string
slice3 := []byte{'g', 'o', 'o', 'g', 'l', 'e'}

// 添加元素
slice1 = append(slice1, 1)