Golang:我如何在现有库中使用refect包

时间:2015-09-18 10:34:10

标签: reflection go

我想从函数名称调用现有库中的函数。

在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)
}

http://play.golang.org/p/6B6-90GTwc

1 个答案:

答案 0 :(得分:0)

您需要使用using System.Runtime.Serialization.Formatters.Soap; 获取reflect.Value个客户端和方法值,然后使用reflect.ValueOf

reflect.Value.Call

游乐场:http://play.golang.org/p/PT33dqj9Q9