gopl-zh.github.com/ch12/ch12-08.md

41 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

2016-02-15 03:06:34 +00:00
## 12.8. 显示一个类型的方法集
2015-12-09 07:45:11 +00:00
2016-02-15 03:06:34 +00:00
我们的最后一个例子是使用reflect.Type来打印任意值的类型和枚举它的方法
2015-12-31 14:37:36 +00:00
2016-01-20 14:56:40 +00:00
<u><i>gopl.io/ch12/methods</i></u>
2015-12-31 14:37:36 +00:00
```Go
// Print prints the method set of the value x.
func Print(x interface{}) {
v := reflect.ValueOf(x)
t := v.Type()
fmt.Printf("type %s\n", t)
for i := 0; i < v.NumMethod(); i++ {
methType := v.Method(i).Type()
fmt.Printf("func (%s) %s%s\n", t, t.Method(i).Name,
strings.TrimPrefix(methType.String(), "func"))
}
}
```
2021-11-17 09:39:40 +00:00
reflect.Type和reflect.Value都提供了一个Method方法。每次t.Method(i)调用将一个reflect.Method的实例对应一个用于描述一个方法的名称和类型的结构体。每次v.Method(i)方法调用都返回一个reflect.Value以表示对应的值§6.4也就是一个方法是绑到它的接收者的。使用reflect.Value.Call方法我们这里没有演示将可以调用一个Func类型的Value但是这个例子中只用到了它的类型。
2015-12-31 14:37:36 +00:00
2016-02-15 03:06:34 +00:00
这是属于time.Duration和`*strings.Replacer`两个类型的方法:
2015-12-31 14:37:36 +00:00
```Go
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)
2018-05-27 20:51:15 +00:00
```