// 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 以表示對應的值,也就是一個方法是幫到它的接收者的。
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)
`