awesome-patterns/playground/pointer/pointer_test.go
2018-09-19 14:52:44 +08:00

21 lines
482 B
Go

package pointer
import (
"fmt"
"testing"
)
func TestBasic(t *testing.T) {
answer := 42
fmt.Println(&answer) // & is address operator
address := &answer
fmt.Println(*address) // * is dereferencing, which providers the value that a memory address refers to.
fmt.Printf("address is a %T \n", address) // print the pointer type
var address2 *int // declare a pointer
address2 = address // address2 can store some pinter type
fmt.Println(*address2)
}