Go's most basic collections is an array. When you define an array, you must specify what type of data it may contain and how big the array is in the following form:
[<size>]<type>
For example,
[10]int
is an array of size 10 that containsint
s,- while
[5]string
is an array of size 5 that containsstring
s.
The key to making this an array is specifying the size. If your definition didn't have the size, it would seem like it works, but it would not be an array - it'd be a slice.
You can set element values to be any type, including pointers and arrays.
Arrays in Go are fundamental data structures that store a fixed-size sequential collection of elements of the same type. Unlike slices, which are more flexible, arrays have a predetermined length defined at the time of declaration. This characteristic leads to both advantages and limitations in their usage.
-
Fixed Size: The size of an array is part of its type and cannot be changed after its declaration. This allows for efficient memory allocation but limits flexibility[2][3].
-
Contiguous Memory Allocation: Arrays store elements in contiguous memory locations, which facilitates fast access since the address of each element can be calculated based on its index[1].
-
Value Type: In Go, arrays are treated as value types. When an array is passed to a function, a copy of the entire array is made, not just a reference to its first element. This means modifications within the function do not affect the original array[1][4].
-
Initialization: Arrays can be initialized either by specifying all values or allowing the compiler to infer the size. For example:
var a [5]int // Declares an array of 5 integers b := [5]int{1, 2, 3, 4, 5} // Initializes an array with specific values c := [...]int{1, 2, 3} // Compiler infers size
The syntax for declaring an array in Go is:
var name [length]type
For instance:
var nums [5]int // An array of five integers
You can also initialize arrays directly:
arr := [5]int{1, 2, 3, 4, 5}
Go provides several built-in functions for working with arrays:
- Length: Use
len(array)
to get the number of elements. - Accessing Elements: Elements can be accessed using their index (e.g.,
array
). - Looping Through Arrays: You can use a
for
loop orfor range
to iterate through elements.
Example:
for i := 0; i < len(arr); i++ {
fmt.Println(arr[i])
}
- Memory Efficiency: Since arrays have a fixed size and are allocated in contiguous memory, they can be more memory-efficient compared to slices when the size is known beforehand.
- Avoiding Large Arrays on Stack: If an array exceeds a certain size (e.g., 10 MB as per Go 1.23), it will be allocated on the heap instead of the stack[1].
- Copying Behavior: Be cautious about the copying behavior when passing arrays to functions; this can lead to unexpected results if modifications are made within the function.
- Zero Values: Uninitialized elements in an array default to their zero values (e.g.,
0
for integers) which can lead to confusion if not accounted for[4].
In summary, understanding how arrays work in Go is crucial for effective programming. They offer predictable performance and memory usage but come with limitations regarding flexibility and mutability compared to slices.
Citations: [1] https://victoriametrics.com/blog/go-array/ [2] https://codedamn.com/news/go/arrays-in-go [3] https://www.digitalocean.com/community/tutorials/understanding-arrays-and-slices-in-go [4] https://dev.to/dawkaka/go-arrays-and-slices-a-deep-dive-dp8
- A Tour of Go - Arrays (see https://go.dev/tour/moretypes/6)
- Arrays in Golang
- Go by Example: Arrays
- Go Array - programiz.com
go test .