Slices
This is a long section...
As mentioned before, an array's size is fixed. However, a slice is a dynamically-sized and flexible view into the elements of an array.
The type []T
is a slice with elements of type T.
Declaration
A slice is formed by specifying two indices, a low and high bound, separated by a colon. This selects a half-open range which includes the first element, but excludes the last one.
Example
Consider Slices as References to Arrays
A slice is just a section of an underlying array. It does not store any data. Changing the elements of one slice changes the corresponding elements of its corresponding array. So, other slices that share the same underlying array would see the changes.
Example
Slice Literals
A slice literal is like an array literal without the length. This is an array literal:
This is a slice literal:
Example
Slice Defaults
We can use defaults instead of specifying the low or high bounds.
Consider an array var a[10]int
. The following slide expressions are equivalent:
a[0:10]
a[:10]
a[0:]
a[:]
Example
Slice Length and Capacity
A slide has both a length and a capacity.
Length
Capacity
Definition
The number of elements the slice contains
The number of elements in the underlying array, counting from the first element in the slice
Usage
len(s)
cap(s)
Example
Zero Value
The zero value of a slice is nil
. A nil slice has a length and capacity of 0 and has no underlying array.
Make
a Slice
Make
a SliceRemember we mentioned that arrays are fix-sized. Now, we can create dynamically-sized arrays using the built-in make
function.
The make function allocates a zeroed array and returns a slice that refers to that array. The first argument is the array type; the second is the length; the third is the capacity.
Example
Slices of Slices
Since slices can contain any type, they can also contain other slices.
Example (Tic-Tac-Toe board: 2D array)
Append Function
The first parameter s
of append
is a slice of type T
, and the rest are T
values to append to the slice.
The resulting value of append
is a slice containing all the elements of the original slice plus the provided values. If the backing array of s
is too small to fit all the given values a bigger array will be allocated. The returned slice will point to the newly allocated array.
Example
More on Slices
Last updated
Was this helpful?