Golang 通过字符串调用方法

package main

import (
	"fmt"
	"reflect"
)

type Student struct {
}

func (s *Student) Listen() {
	fmt.Println("listen")
}

func main() {
	student := Student{}
	value := reflect.ValueOf(&student)
	f := value.MethodByName("Listen")
	f.Call([]reflect.Value{})
}
上一篇:go语言的魔幻旅程14-反射


下一篇:proxy和reflect