mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-23 13:06:02 +03:00
41 lines
722 B
Go
41 lines
722 B
Go
|
package basic
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestPrintAddress(t *testing.T) {
|
||
|
var a int
|
||
|
fmt.Printf("%T, %v, %p \n", a, a, &a)
|
||
|
passByVariable(a)
|
||
|
passByPointer(&a)
|
||
|
}
|
||
|
|
||
|
func passByVariable(a int) {
|
||
|
fmt.Printf("%T, %v, %p \n", a, a, &a)
|
||
|
}
|
||
|
|
||
|
func passByPointer(a *int) {
|
||
|
fmt.Printf("%T, %v, %p \n", a, a, &a)
|
||
|
fmt.Printf("%T, %v, %p \n", *a, *a, &*a)
|
||
|
}
|
||
|
|
||
|
type robot struct{}
|
||
|
|
||
|
func TestStructAddress(t *testing.T) {
|
||
|
var a robot
|
||
|
fmt.Printf("%T, %v, %p \n", a, a, &a)
|
||
|
passStructByVariable(a)
|
||
|
passStructByPointer(&a)
|
||
|
}
|
||
|
|
||
|
func passStructByVariable(a robot) {
|
||
|
fmt.Printf("%T, %v, %p \n", a, a, &a)
|
||
|
}
|
||
|
|
||
|
func passStructByPointer(a *robot) {
|
||
|
fmt.Printf("%T, %v, %p \n", a, a, &a)
|
||
|
fmt.Printf("%T, %v, %p \n", *a, *a, &*a)
|
||
|
}
|