我想从函数名称调用现有库中的函数。
在golang中,只需从methodname调用方法即可,因为反映包具有(v Value)MethodByName(名称字符串)。 但是,为了调用方法,所有方法参数都应该是reflect.Value。
如何调用参数不是reflect.Value。
的函数package main
//-------------------------------
// Example of existing library
//-------------------------------
type Client struct {
id string
}
type Method1 struct {
record string
}
// type Method2 struct{}
// ...
// defined at library : do not change
func (c *Client) Method1(d *Method1) {
d.record = c.id
}
//------------------
// Edit from here
//------------------
func main() {
// give MethodN from cmd line
method_name := "Method1"
// How can I call Method1(* Method1) propery???
// * Make Method1 instance
// * Call Method1 function
//...
//fmt.Printf("%s record is %s", method_name, d.record)
}
答案 0 :(得分:0)
您需要使用using System.Runtime.Serialization.Formatters.Soap;
获取reflect.Value
个客户端和方法值,然后使用reflect.ValueOf
:
reflect.Value.Call