Flash cards
Review the key moves
What is the main idea behind Go Slices?
Lesson checks
Practice each idea before moving on
Short Mimo-style checks built from this lesson's code, terms, and sequence.
Which statement best captures the main point of this lesson?
Put the learning moves in the order that makes the concept easiest to apply.
Slices are similar to arrays, but are more powerful and flexible.
Like arrays, slices are also used to store multiple values of the same type in a single variable.
However, unlike arrays, the length of a slice can grow and shrink as you see fit.
In Go, there are several ways to create a slice:
- Using the [] datatype { values } format
- Create a slice from an array
- Using the make() function
Create a Slice With [] datatype { values }
Syntax
slice_name
:= []
datatype {
values
}A common way of declaring a slice is like this:
myslice := []int{}The code above declares an empty slice of 0 length and 0 capacity.
To initialize the slice during declaration, use this:
myslice := []int{1,2,3}The code above declares a slice of integers of length 3 and also the capacity of 3.
In Go, there are two functions that can be used to return the length and capacity of a slice:
- len() function - returns the length of the slice (the number of elements in the slice)
- cap() function - returns the capacity of the slice (the number of elements the slice can grow or shrink to)
Example
package main
import ("fmt")
func main() {
myslice1 := []int{}
fmt.Println(len(myslice1))
fmt.Println(cap(myslice1))
fmt.Println(myslice1)
myslice2 := []string{"Go", "Slices", "Are", "Powerful"}
fmt.Println(len(myslice2))
fmt.Println(cap(myslice2))
fmt.Println(myslice2)
}In the example above, we see that in the first slice (myslice1), the actual elements are not specified, so both the length and capacity of the slice will be zero. In the second slice (myslice2), the elements are specified, and both length and capacity is equal to the number of actual elements specified.
Create a Slice From an Array
You can create a slice by slicing an array:
Syntax
var myarray = [length]datatype{values} // An array
myslice := myarray[start:end]
// A slice made from the arrayExample
package main
import ("fmt")
func main() {
arr1 := [6]int{10, 11, 12, 13, 14,15}
myslice := arr1[2:4]
fmt.Printf("myslice = %v\n", myslice)
fmt.Printf("length = %d\n", len(myslice))
fmt.Printf("capacity = %d\n", cap(myslice))
}In the example above myslice is a slice with length 2. It is made from arr1 which is an array with length 6.
If myslice started from element 0, the slice capacity would be 6.
Create a Slice With The make() Function
The make() function can also be used to create a slice.
Syntax
slice_name
:= make([]
type , length , capacity )Note
If the capacity parameter is not defined, it will be equal to length .
make()