12.8. 显示一个类型的方法集

我们的最后一个例子是使用reflect.Type来打印任意值的类型和枚举它的方法:

gopl.io/ch12/methods

  1. // Print prints the method set of the value x.
  2. func Print(x interface{}) {
  3. v := reflect.ValueOf(x)
  4. t := v.Type()
  5. fmt.Printf("type %s\n", t)
  6. for i := 0; i < v.NumMethod(); i++ {
  7. methType := v.Method(i).Type()
  8. fmt.Printf("func (%s) %s%s\n", t, t.Method(i).Name,
  9. strings.TrimPrefix(methType.String(), "func"))
  10. }
  11. }

reflect.Type和reflect.Value都提供了一个Method方法。每次t.Method(i)调用将一个reflect.Method的实例,对应一个用于描述一个方法的名称和类型的结构体。每次v.Method(i)方法调用都返回一个reflect.Value以表示对应的值(§6.4),也就是一个方法是帮到它的接收者的。使用reflect.Value.Call方法(我们这里没有演示),将可以调用一个Func类型的Value,但是这个例子中只用到了它的类型。

这是属于time.Duration和*strings.Replacer两个类型的方法:

  1. methods.Print(time.Hour)
  2. // Output:
  3. // type time.Duration
  4. // func (time.Duration) Hours() float64
  5. // func (time.Duration) Minutes() float64
  6. // func (time.Duration) Nanoseconds() int64
  7. // func (time.Duration) Seconds() float64
  8. // func (time.Duration) String() string
  9. methods.Print(new(strings.Replacer))
  10. // Output:
  11. // type *strings.Replacer
  12. // func (*strings.Replacer) Replace(string) string
  13. // func (*strings.Replacer) WriteString(io.Writer, string) (int, error)