其他分享
首页 > 其他分享> > golang之反射

golang之反射

作者:互联网

依赖的包为reflect。

Kind():返回最基础的类型。

type Kind uint

const (
	Invalid Kind = iota
	Bool
	Int
	Int8
	Int16
	Int32
	Int64
	Uint
	Uint8
	Uint16
	Uint32
	Uint64
	Uintptr
	Float32
	Float64
	Complex64
	Complex128
	Array
	Chan
	Func
	Interface
	Map
	Ptr
	Slice
	String
	Struct
	UnsafePointer
)

relect.ValueOf, value.Elem():Elem()用与指针或者interface返回值。

标签:反射,Kind,Slice,Struct,Uintptr,Elem,Complex128,golang
来源: https://www.cnblogs.com/dingxiaoqiang/p/14866609.html