// The len built-in function returns the length of v, according to its type:
// Array: the number of elements in v.
// Pointer to array: the number of elements in *v (even if v is nil).
// Slice, or map: the number of elements in v; if v is nil, len(v) is zero.
// String: the number of bytes in v.
// Channel: the number of elements queued (unread) in the channel buffer;
// if v is nil, len(v) is zero.
func len(v Type) int
// The cap built-in function returns the capacity of v, according to its type:
// Array: the number of elements in v (same as len(v)).
// Pointer to array: the number of elements in *v (same as len(v)).
// Slice: the maximum length the slice can reach when resliced;
// if v is nil, cap(v) is zero.
// Channel: the channel buffer capacity, in units of elements;
// if v is nil, cap(v) is zero.
func cap(v Type) int
3条答案
按热度按时间bvhaajcl1#
切片是一种抽象,它在底层使用数组。
cap
告诉你底层数组的容量。len
告诉你数组中有多少项。Go语言中的切片抽象非常好,因为它会为你调整底层数组的大小,加上Go语言中数组不能调整大小,所以几乎总是使用切片。
范例:
字符串
将输出如下内容:
型
正如你所看到的,一旦满足容量,
append
将返回一个容量更大的新切片。在第四次迭代中,你会注意到一个更大的容量和一个新的指针地址。Play example
我知道你没有问数组和append,但它们是理解切片和内置函数的基础。
zzwlnbp82#
从源代码:
字符串
eit6fx6z3#
简单解释切片是数组的自生长形式,因此有两个主要属性。
Length是切片中所有元素的总数,可以用来循环我们存储在切片中的元素。同样,当我们打印切片时,所有的元素都会被打印出来。
容量是底层数组中没有元素的总和,当你追加更多元素时,长度会增加到容量。之后,任何进一步的追加都会导致容量自动增加(大约两倍),长度增加所追加的元素的数量。
真实的魔法发生在你从一个切片中切出子切片时,所有的实际读/写都发生在底层数组上。所以子切片中的任何变化也会改变原始切片和底层数组中的数据。因为任何子切片都可以有自己的长度和容量。
仔细阅读下面的程序。它是一个golang tour example的修改版本
字符串