Reflection can be used to inspect the type of variables and to dynamically access and modify their values. Following is a simple example of using reflection to inspect a variable's type:
func main() { v1 := 42 inspectVariable(v1) v2 := map[int]string{1: "aaa"} inspectVariable(v2) } func inspectVariable(variable interface{}) { t := reflect.TypeOf(variable) v := reflect.ValueOf(variable) fmt.Println("Type:", t) fmt.Println("Value:", v) }
zzh@ZZHPC:/zdata/Github/ztest$ go run main.go Type: int Value: 42 Type: map[int]string Value: map[1:aaa]
标签:map,Reflection,inspectVariable,Value,variable,Go,Using,Type From: https://www.cnblogs.com/zhangzhihui/p/18111627