摘要: append函数使用 1、使用append给切片添加数值 import "fmt" func main() { var sli []int //使用append追加切片 sli = append(sli,1) sli = append(sli,2) fmt.Println(sli) } 执行结果 [ 阅读全文