golang为什么没有关于类型的操作

gogoboy · · 1334 次点击
i := 10 t := reflect.TypeOf(i) fmt.Println(t.Name()) fmt.Println(unsafe.Sizeof(i))
#1