作为@ANisus回答的补充...以下是“Go in action”一书中的一些信息,我认为值得一提:nil&empty切片的区别如果我们考虑这样的切片:[pointer] [length] [capacity]然后:nil slice: [nil][0][0]empty slice: [addr][0][0] // points to an address零切片当您想要表示一个不存在的切片时,它们很有用,例如在返回切片的函数中发生异常时。// Create a nil slice of integers.var slice []int空切片当您想要表示一个空集合时,例如当数据库查询返回零结果时,空切片很有用。// Use make to create an empty slice of integers.slice := make([]int, 0)// Use a slice literal to create an empty slice of integers.slice := []int{}不管您使用的是零片或空片,内置的功能append,len和cap工作一样。去游乐场示例:package mainimport ( "fmt")func main() { var nil_slice []int var empty_slice = []int{} fmt.Println(nil_slice == nil, len(nil_slice), cap(nil_slice)) fmt.Println(empty_slice == nil, len(empty_slice), cap(empty_slice))}印刷:true 0 0false 0 0