数组 – Golang – 正确的方式来初始化空片

前端之家收集整理的这篇文章主要介绍了数组 – Golang – 正确的方式来初始化空片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
要声明一个具有非固定大小的空切片,
是更好的做:
mySlice1 := make([]int,0)

要么 :

mySlice2 := []int{}

只是想知道哪一个是正确的方式。

干杯

你给出的两个选择在语义上是相同的,我假设它们产生相同的汇编指令。

为了避免不必要的分配,如果你最终不使用切片,你可以保留它为零值:

var myslice []int

正如Golang.org blog

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.

原文链接:https://www.f2er.com/go/188020.html

猜你在找的Go相关文章