16-slices/questions/5-slice-header.md
3: Yes! It's just a tiny data structure with three numeric fields.
4: A slice doesn't contain any elements on its own.
SLICE HEADER:
Assume that the backing array is this one:
var array [10]string
1: This slice's capacity is 5, it can only see the elements beginning with the 6th element.
2: That's right.
array[:5]returns a slice with the first 5 elements of thearray(len is 5), but there are 5 more elements in the backing array of that slice, so in total its capacity is 10.3: This slice's capacity is 7, it can only see the elements beginning with the 4th element.
4: This is an error. The backing array doesn't have 100 elements.
var tasks []string
1: A nil slice doesn't have backing array, so all the fields are equal to zero.
var array [1000]int64
array2 := array
slice := array2[:]
4:
arrayis 1000 x int64 (8 bytes) = 8000 bytes. Assigning an array copies all its elements, soarray2adds additional 8000 bytes. A slice doesn't store anything on its own. Here, it's being created from array2, so it doesn't allocate a backing array as well. A slice header's size is 24 bytes. So in total: This program allocates 16024 bytes.
nums := []int{9, 7, 5, 3, 1}
sort.Ints(nums)
1: No, a slice value doesn't contain any elements. So it cannot pass the elements.
2: Sorry but not only that.
3: Nope. Remember, they are packed in a tiny data structure called the ....?
4: Yep! A slice value is a slice header (pointer, length and capacity). A slice variable stores the slice header.