要声明一个具有非固定大小的空切片,
是更好的做:
是更好的做:
mySlice1 := make([]int,0)
要么 :
mySlice2 := []int{}
只是想知道哪一个是正确的方式。
干杯
你给出的两个选择在语义上是相同的,我假设它们产生相同的汇编指令。
原文链接:https://www.f2er.com/go/188020.html为了避免不必要的分配,如果你最终不使用切片,你可以保留它为零值:
var myslice []int
a nil slice is functionally equivalent to a zero-length slice,even though it points to nothing. It has length zero and can be appended to,with allocation.