package testfunc
import(
"fmt"
)
type Test struct{
Name string
Age int
}
/*type Intio interface {
Stringtest() string
}*/
func (this Test) Stringtest(){
fmt.Println(this.Name)
}
func (this Test) Stringtest2(){
fmt.Println("Stringtest2",this.Name)
}
func (this *Test) Stringtest1(i int){
this.Age=i
fmt.Println(this.Age)
}
func GetNumArgs(args []string,num int) string{
if num==0 {
num=1
}
return args[num]
}
package main
import(
"testfunc"
"reflect"
"fmt"
)
func main(){
d:=&testfunc.Test{"lyl",18}
v:=reflect.ValueOf(d)
ele:=v.Elem()
t:=ele.Type()
//读取这个对象的所有属性
fmt.Println("读取这个对象的所有属性")
for i:=0;i<t.NumField();i++{
fmt.Println(t.Field(i).Name,ele.Field(i).Interface())
}
//读取对象方法
fmt.Println("读取所有对象的方法")
for i := 0; i < t.NumMethod(); i++ {
fmt.Println(t.Method(i).Name)
}
fmt.Println("函数调用测试")
ele.MethodByName("Stringtest").Call(nil)
fmt.Println("带参函数调用")
//func (this *Test) 需要指针调用
fmt.Println("未修改的年龄",d.Age)
iage:=reflect.ValueOf(11)
v.MethodByName("Stringtest1").Call([]reflect.Value{iage})//参数转换成reflect.Value
fmt.Println("反射调用通过指针修改后的年龄",d.Age)
}
无法遍历出指针方法
有疑问加站长微信联系(非本文作者)