Go Arrays: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(33 intermediate revisions by the same user not shown)
Line 3: Line 3:
=Internal=
=Internal=
* [[Go_Language#Array|Go Language]]
* [[Go_Language#Array|Go Language]]
* [[Go_Slices#Overview|Go Slice]]
* [[Go_Slices#Overview|Go Slices]]
* [[Go_Maps#Overview|Go Maps]]
* [[Go_Maps#Overview|Go Maps]]


Line 11: Line 11:
The compiler knows the length of the array and the type of its elements at compile time, so it knows how much space to allocate. The length of the array is part of the type name, arrays with different lengths are of different types, even if the element type is the same. Once an array is declared, its type and length cannot be changed.
The compiler knows the length of the array and the type of its elements at compile time, so it knows how much space to allocate. The length of the array is part of the type name, arrays with different lengths are of different types, even if the element type is the same. Once an array is declared, its type and length cannot be changed.


The arrays are the internal data structures used both by [[Go Slices|slices]] and [[Go Maps|maps]], and they are rarely used directly in Go code.
Arrays are fast: data is maintain in continuous blocks of memory, which keeps them in the CPU caches longer. Index access and arithmetic is fast: the type information and the guarantee that all elements are of same type allows calculating "distance in memory" to find elements. The arrays are the internal data structures used both by [[Go_Slices#Overview|slices]] and [[Go_Maps#Overview|maps]], and they are rarely used directly in Go code. Because the function arguments are passed by value, slices should be used instead of arrays for performance reasons, explained [[Go_Slices#Slice_Performance|here]].
 
An array variable is a value, not a [[Go_Language#.28No.29_Reference_Variables|reference variable]], which means that no two different array variables may point to the same array instance.
 
=Arrays are Values=
An array is a value in Go. It can be used in an assignment operation. The variable name denotes the entire array, thus an array can be assigned to other arrays of the same type, which is designated by the length and element type. When an array <code>a2</code> is assigned to an array <code>a1</code>, the values of <code>a2</code> are copied across to <code>a1</code>.
 
In Go, function arguments are [[Go_Functions#Pass_by_Value_vs._Pass_by_Reference|passed by value]]. The fact that arrays are values has implications on how arrays should be passed between functions. If an array is passed as argument, a copy of the entire array is made and placed on the stack, regardless of the array's size. For large arrays, this can have space and performance implications.
 
<span id='Pass_by_Reference'></span>If you must work with arrays, passing pointers to arrays is preferred. However, passing pointers comes with [[Go_Functions#Pass_by_Reference|complicated syntax]]:
<syntaxhighlight lang='go'>
func passArrayByPointerExample(a *[3]int) {
    (*a)[1] = (*a)[1] + 1
}
 
func callerFunction() {
    ia := [3]int{10, 20, 30}
    passArrayByPointerExample(&ia)
    fmt.Println(ia) // will print [10, 21, 30]
}
</syntaxhighlight>
 
A better, Go idiomatic alternative is to avoid using arrays directly in code, and use [[Go_Slices#Passing_Slices_as_Arguments|slices]] instead.
 
Also see: {{Internal|Go_Slices#Passing_Slices_as_Arguments|Passing Slices as Arguments}}
 
=Declaration=
=Declaration=
The array type includes the size, enclosed in square brackets, followed by the element type. As mentioned [[#Overview|above]], different size arrays are different types, even if they have the same element type.
The array type includes the size, enclosed in square brackets, followed by the element type. As mentioned [[#Overview|above]], different size arrays are different types, even if they have the same element type.
Line 21: Line 46:
<syntaxhighlight lang='go'>
<syntaxhighlight lang='go'>
println(a[0]) // displays 0
println(a[0]) // displays 0
</syntaxhighlight>
The following declaration designates a [[Go_Slices#Declaration|slice]], NOT an array:
<syntaxhighlight lang='go'>
var s []int
</syntaxhighlight>
</syntaxhighlight>


Line 33: Line 63:
<syntaxhighlight lang='go'>
<syntaxhighlight lang='go'>
var a = [...]int{7, 17, 37} // the type of a is inferred to be [3]int
var a = [...]int{7, 17, 37} // the type of a is inferred to be [3]int
var b = [...]int{
    5,
    15,
    25,
}
</syntaxhighlight>
The extra trailing comma is required when the elements are specified on separate lines, but not when they're specified in a single line. This is to allow commenting out elements without breaking the program.
==Partial Initialization Literals==
Go provides syntax for initializing just some of the elements with specified values, letting the compiler to initialize the rest with zero values:
<syntaxhighlight lang='go'>
a := [100]int{0:10, 1:20}
</syntaxhighlight>
</syntaxhighlight>
In the example above, the element 0 is initialized to 10, the element 1 is initialized to 20 and the rest are initialized to their zero value (0).
=Initialization=
=Initialization=
The [[Go_Language#Variable_Initialization_with_Type_Inference|initialization with type inference]], with a [[#Literal|literal]], can be used:
The [[Go_Language#Variable_Initialization_with_Type_Inference|initialization with type inference]], with a [[#Literal|literal]], can be used:
Line 47: Line 91:
=Operators=
=Operators=
==Indexing Operator <tt>[]</tt>==
==Indexing Operator <tt>[]</tt>==
Array elements are accessed using the indexing (subscript) operator. Indices are zero-based.
Array elements are accessed, and can be modified using the [[Go_Language#Indexing_Operator|indexing (subscript) operator]]. Indices are zero-based. Accesses are bound-checked and an attempt to access an element out of bounds produces a compile-time or runtime error:
 
Compile-time error:
<font size=-2>
./main.go:13: invalid array index 3 (out of bounds for 3-element array)
</font>
 
Runtime error:
<font size=-2>
panic: runtime error: index out of range
</font>
 
=Iterating though Arrays=
=Iterating though Arrays=
Use the <code>[[Go_Keyword_range|range]]</code> [[Go_Language#Keywords|keyword]]. <code>range</code> allows to iterate by indices, values or both.
Use the <code>[[Go_Keyword_range|range]]</code> [[Go_Language#Keywords|keyword]]. <code>[[Go_Keyword_range|range]]</code> allows to iterate by indices, values or both.
Iterate by indices:
Iterate by indices:
<syntaxhighlight lang='go'>
<syntaxhighlight lang='go'>
Line 71: Line 126:


=TO DISTRIBUTE=
=TO DISTRIBUTE=
<font color=darkkhaki>
==Implementation Details==
Arrays are fast: data is maintain in continuous blocks of memory, which keeps them in the CPU caches longer. Index access and arithmetic is fast: the type information and the guarantee that all elements are of same type allows calculating "distance in memory" to find elements.
==Arrays are Values==
An array is a value in Go. It can be used in an assignment operation. The variable name denotes the entire array, thus an array can be assigned to other arrays of the same type (length and element type). When an array2 is assigned to an array1, the values of array2 are copied across to array1.
In Go, function arguments are [[Go_Concepts_-_Functions#Pass_by_Value_vs._Pass_by_Reference|passed by value]]. The fact that arrays are values also has implications on how arrays are passed between functions: by value. A copy of the entire array is made and placed on the stack, regardless of the array's size. For large arrays, this can have performance implications. That is why, passing pointers to arrays is preferred. Even better, use [[Go Slices#Overview|slices]].
==Declaration==
===Long Declaration===
<pre>
var a [5]int
</pre>
A declaration without explicit initialization initializes the array with the [[Go Concepts - The Type System#Zero_Value|type's zero value]].
Long declaration with explicit initialization with an ''array literal'':
<pre>
var b [3]int = [3]int{1, 2, 3}
</pre>
Go provides syntax for initializing just some of the elements with specified values, letting the compiler to initialize the rest with zero values. The syntax is:
<pre>
var c [20]int = [100]int{0:10, 1:20}
</pre>
In the example above, the element 0 is initialized to 10, the element 1 is initialized to 20 and the rest are initialized to their zero value (0).
===Short Declaration===
The short declaration:
<pre>
a := [3]int{1, 2, 3}
</pre>
The short declaration is invalid for arrays if the length and type is not followed by the initialization literal { ... }, the initialization literal is ''required''.
For the format above, there's redundancy in the requirement to specify the length of the array between square brackets and the length of the literal. The compiler can infer the length of the array from the literal, and the declaration is:
<pre>
a := [...]int{1, 2, 3}
</pre>
The literal can be specified "vertically":
<pre>
a := [...]int{
        1,
        2,
        3,
  }
</pre>
The extra trailing comma is ''required'' when the elements are specified on separate lines, but not when they're specified in a single line. This is to allow commenting out elements without breaking the program.
==Array Operators and Functions==
===Indexing Operator===
Indexing operator <tt>[[Go Concepts - Operators#.5B.5D|[]]]</tt> returns the value at the given position and can also be used to change the value at that position. Accesses are bound-checked and an attempt to access an element out of bounds produces a compile-time or runtime error:
Compile-time error:
<pre>
./main.go:13: invalid array index 3 (out of bounds for 3-element array)
</pre>
Runtime error:
<pre>
panic: runtime error: index out of range
</pre>
===Array Length===
===Array Length===
<tt>[[Go Built-In Functions Length and Capacity#len.28.29|len()]]</tt> returns the length of the array.
<tt>[[Go Built-In Functions Length and Capacity#len.28.29|len()]]</tt> returns the length of the array.
===Iterating over Arrays===
===Iterating over Arrays===
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
:[[Go Keyword range|<tt>range</tt> Keyword]]
:[[Go Keyword range|<tt>range</tt> Keyword]]
</blockquote>
</blockquote>
==Multidimensional Arrays==
==Multidimensional Arrays==
<font color=red>'''TODO''' Go in Action page 84.</font>
<font color=red>'''TODO''' Go in Action page 84.</font>
</font>
</font>

Latest revision as of 00:51, 29 September 2023

External

Internal

Overview

An array is a composite type that consists in a fixed-length, contiguous and numbered sequence of elements. All elements of an array have the same type. The type of the elements can be a Go built-in type, a user type or a pointer. *<type> notation is used to declare a pointer array.

The compiler knows the length of the array and the type of its elements at compile time, so it knows how much space to allocate. The length of the array is part of the type name, arrays with different lengths are of different types, even if the element type is the same. Once an array is declared, its type and length cannot be changed.

Arrays are fast: data is maintain in continuous blocks of memory, which keeps them in the CPU caches longer. Index access and arithmetic is fast: the type information and the guarantee that all elements are of same type allows calculating "distance in memory" to find elements. The arrays are the internal data structures used both by slices and maps, and they are rarely used directly in Go code. Because the function arguments are passed by value, slices should be used instead of arrays for performance reasons, explained here.

An array variable is a value, not a reference variable, which means that no two different array variables may point to the same array instance.

Arrays are Values

An array is a value in Go. It can be used in an assignment operation. The variable name denotes the entire array, thus an array can be assigned to other arrays of the same type, which is designated by the length and element type. When an array a2 is assigned to an array a1, the values of a2 are copied across to a1.

In Go, function arguments are passed by value. The fact that arrays are values has implications on how arrays should be passed between functions. If an array is passed as argument, a copy of the entire array is made and placed on the stack, regardless of the array's size. For large arrays, this can have space and performance implications.

If you must work with arrays, passing pointers to arrays is preferred. However, passing pointers comes with complicated syntax:

func passArrayByPointerExample(a *[3]int) {
    (*a)[1] = (*a)[1] + 1
}

func callerFunction() {
    ia := [3]int{10, 20, 30}
    passArrayByPointerExample(&ia)
    fmt.Println(ia) // will print [10, 21, 30]
}

A better, Go idiomatic alternative is to avoid using arrays directly in code, and use slices instead.

Also see:

Passing Slices as Arguments

Declaration

The array type includes the size, enclosed in square brackets, followed by the element type. As mentioned above, different size arrays are different types, even if they have the same element type.

var a [7]int

The elements are initialized to zero value of the type the array is composed of, upon declaration:

println(a[0]) // displays 0

The following declaration designates a slice, NOT an array:

var s []int

Literals

The array literals are predefined values that go into an array and they are used to initialize an array. The type ([3]int) is specified as part of the array literal, so it does not have to be provided in the var syntax, but it can be provided, redundantly.

var a = [3]int{7, 17, 37}

The length of the array, provided between square brackets, must match the number of elements in the literal, otherwise the compiler will indicate compilation error.

A better, alternative representation of the array literal uses [...] to express that the size of the array will be given by the number of elements in the literal.

var a = [...]int{7, 17, 37} // the type of a is inferred to be [3]int

var b = [...]int{
    5,
    15,
    25,
 }

The extra trailing comma is required when the elements are specified on separate lines, but not when they're specified in a single line. This is to allow commenting out elements without breaking the program.

Partial Initialization Literals

Go provides syntax for initializing just some of the elements with specified values, letting the compiler to initialize the rest with zero values:

a := [100]int{0:10, 1:20}

In the example above, the element 0 is initialized to 10, the element 1 is initialized to 20 and the rest are initialized to their zero value (0).

Initialization

The initialization with type inference, with a literal, can be used:

var a = [...]int{7, 17, 37}

Also, the short variable declaration can be used as well:

a := [...]int{7, 17, 37}

Empty Array

Operators

Indexing Operator []

Array elements are accessed, and can be modified using the indexing (subscript) operator. Indices are zero-based. Accesses are bound-checked and an attempt to access an element out of bounds produces a compile-time or runtime error:

Compile-time error:

./main.go:13: invalid array index 3 (out of bounds for 3-element array)

Runtime error:

panic: runtime error: index out of range

Iterating though Arrays

Use the range keyword. range allows to iterate by indices, values or both. Iterate by indices:

for i := range a {
  fmt.Printf("index: %d\n", i)
}

Iterate by values:

for _, e := range a {
  fmt.Printf("element value: %d\n", e)
}

Iterate by both indices and values:

for i, e := range a {
  fmt.Printf("index: %d, element value: %d\n", i, e)
}

TO DISTRIBUTE

Array Length

len() returns the length of the array.

Iterating over Arrays

range Keyword

Multidimensional Arrays

TODO Go in Action page 84.