1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| package main
import ( "fmt" "reflect" )
func main() {
object := make([]int, 3) fmt.Println(reflect.TypeOf(object)) fmt.Println(object)
object2 := new(int) fmt.Println(reflect.TypeOf(object2)) fmt.Println(object2) fmt.Println(*object2) }
|