package mainimport "fmt"func main() { paths := []string{"hello", "world", "mars"} var result = delete(paths, 1) fmt.Println(result) fmt.Println(paths)}func delete(paths []string, index int) []string { paths = append(paths[:index], paths[index+1:]...) return paths}上面代碼的結(jié)果如下:[你好火星][你好火星火星]如您所見(jiàn),第二個(gè)fmt.Println(paths)顯然使用修改后的切片但不使用重新分配的值。這是為什么?我期待它[hello mars]像之前的印刷品一樣印刷。我知道被傳遞的與函數(shù)中的參數(shù)期望引用相同的底層數(shù)組的paths切片不同。但我仍然不明白我是如何改變傳遞給function的底層數(shù)組而不是.pathsdelete()pathsdelete[hello mars mars][hello world mars]
重新分配切片參數(shù)的行為不同
千萬(wàn)里不及你
2023-05-22 17:38:44