Home > Article > Backend Development > How Do Pointers to Pointers Work in Go?
Pointers to Pointers in Go
In programming, pointers to pointers can provide a level of indirection that is useful in certain scenarios. Consider the following Go code:
package main import "fmt" func main() { var num int fmt.Println(&num) // address of num makePointer(&num) } func makePointer(firstPointer *int) { fmt.Println(firstPointer) // address of num fmt.Println(&firstPointer) // address of firstPointer makePointerToAPointer(&firstPointer) } func makePointerToAPointer(secondPointer **int) { fmt.Println(secondPointer) // address of firstPointer fmt.Println(&secondPointer) // address of secondPointer }
This code demonstrates how pointers to pointers work. The integer variable num has an address stored in &num. The makePointer function takes the address of &num as an argument, which is stored in firstPointer. The makePointerToAPointer function takes the address of firstPointer as an argument, which is stored in secondPointer.
Practical Applications
While it may seem convoluted, pointers to pointers do have use cases in production code:
Pointers to pointers offer flexibility and indirection in programming, enabling certain operations and code structures that would otherwise be more difficult or impossible to implement.
The above is the detailed content of How Do Pointers to Pointers Work in Go?. For more information, please follow other related articles on the PHP Chinese website!