Prerequisite: Pointers in Golang
Pointers in Go programming language or Golang is a variable which is used to store the memory address of another variable. Whereas an array is a fixed-length sequence which is used to store homogeneous elements in the memory.
You can use the pointers to an array and pass that one as an argument to the function. To understand this concept let’s take an example. In the below program we are taking a pointer array arr which has 5 elements. We want to update this array using a function. Means modifying the array(here the array is {78, 89, 45, 56, 14}) inside the function and that will reflect at the caller. So here we have taken function updatearray which has pointer to array as argument type. Using updatearray(&arr) line of code we are passing the address of the array. Inside function (*funarr)[4] = 750 or funarr[4] = 750 line of code is using dereferencing concept to assign new value to the array which will reflect in the original array. Finally, the program will give output [78 89 45 56 750].
package main
import "fmt"
func updatearray(funarr *[5] int ) {
(*funarr)[4] = 750
}
func main() {
arr := [5] int {78, 89, 45, 56, 14}
updatearray(&arr)
fmt.Println(arr)
}
|
Output:
[78 89 45 56 750]
Note: In Golang it is not recommended to use Pointer to an Array as an Argument to Function as the code become difficult to read. Also, it is not considered a good way to achieve this concept. To achieve this you can use slice instead of passing pointers.
Example:
package main
import "fmt"
func updateslice(funarr [] int ) {
funarr[4] = 750
}
func main() {
s := [5] int {78, 89, 45, 56, 14}
updateslice(s[:])
fmt.Println(s)
}
|
Output:
[78 89 45 56 750]