go chapter 9 - 反射
阿新 • • 發佈:2018-08-02
\n it is can nsh 獲取 fmt string tin cal
https://www.jianshu.com/p/53adb1e92710
// 根據反射,獲取對象的字段名,類型,值
func StructInfo(o interface{}){ t := reflect.TypeOf(o) //獲取類型 if k := t.Kind(); k != reflect.Struct{ fmt.Println("the object is not a struct, but it is", t.Kind()) return } v := reflect.ValueOf(o) // 獲取值 for i := 0; i < t.NumField(); i++{ // 獲取字段 f := t.Field(i) // 獲取當前的字段(名字,類型) val := v.Field(i).Interface() // 獲取值 fmt.Printf("%6s:%v = %v \n", f.Name, f.Type, val) } }
// 根據反射,設置變量,調用方法
/* 通過反射設置字段 */ func ReflectSet(o interface{}){ v := reflect.ValueOf(o) if v.Kind() == reflect.Ptr && !v.Elem().CanSet(){ fmt.Println("修改失敗") return } v = v.Elem() //獲取字段 f := v.FieldByName("Name") if !f.IsValid(){ fmt.Println("修改失敗") return } //設置值 if f.Kind() == reflect.String{ f.SetString("chairis") } } /* 通過反射調用函數 */ func ReflectMethod(o interface{}){ v := reflect.ValueOf(o) //無參函數調用 m1:= v.MethodByName("Say") m1.Call([]reflect.Value{}) //有參函數調用 m2 := v.MethodByName("Hello") m2.Call([]reflect.Value{reflect.ValueOf("iris")}) }
stu := Student{Address:Address{City:"Shanghai", Area:"Pudong"}, Name:"chain", Age:23} fmt.Println("before: ", stu) ReflectSet(&stu) fmt.Println("after: ", stu)
go chapter 9 - 反射