Go語言使用reflect.Type顯示一個型別的方法集

2020-07-16 10:04:52
本節通過範例來演示如何使用 reflect.Type 來列印任意值的型別和列舉它的方法:
// Print prints the method set of the value x.
func Print(x interface{}) {
    v := reflect.ValueOf(x)
    t := v.Type()
    fmt.Printf("type %sn", t)
    for i := 0; i < v.NumMethod(); i++ {
        methType := v.Method(i).Type()
        fmt.Printf("func (%s) %s%sn", t, t.Method(i).Name,
        strings.TrimPrefix(methType.String(), "func"))
    }
}
reflect.Type 和 reflect.Value 都提供了一個 Method 方法。每次 t.Method(i) 呼叫將一個 reflect.Method 的範例,對應一個用於描述一個方法的名稱和型別的結構體。每次 v.Method(i) 方法呼叫都返回一個 reflect.Value 以表示對應的值,也就是一個方法是幫到它的接收者的。

使用 reflect.Value.Call 方法,將可以呼叫一個 Func 型別的 Value,但是這個例子中只用到了它的型別。這是屬於 time.Duration 和 *strings.Replacer 兩個型別的方法:

methods.Print(time.Hour)
// Output:
// type time.Duration
// func (time.Duration) Hours() float64
// func (time.Duration) Minutes() float64
// func (time.Duration) Nanoseconds() int64
// func (time.Duration) Seconds() float64
// func (time.Duration) String() string
methods.Print(new(strings.Replacer))
// Output:
// type *strings.Replacer
// func (*strings.Replacer) Replace(string) string
// func (*strings.Replacer) WriteString(io.Writer, string) (int, error)
`