首页 > TAG信息列表 > rTyp

Go-反射

反射的示意图 案例1 package main import ( "fmt" "reflect" ) func reflectTest01(b interface{}) { //通过反射获取传入变量的type kind value rTyp := reflect.TypeOf(b) fmt.Println("rTye=", rTyp) rVal := reflect.ValueOf(b) fmt.Printf("r