我想从函数名调用现有库中的函数。
在golang中,只从methodname调用方法就可以了,因为reflect包有(v Value) MethodByName(name string)。但是,对于调用方法,所有方法参数都应该是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)
}
http://play.golang.org/p/6B6-90GTwc
慕仙森
相关分类