2015-12-09 07:45:11 +00:00
|
|
|
|
## 12.8. 顯示一個類型的方法集
|
|
|
|
|
|
2015-12-31 14:37:36 +00:00
|
|
|
|
我們的最後一個例子是使用reflect.Type來打印任意值的類型和枚舉它的方法:
|
|
|
|
|
|
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"))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
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`兩個類型的方法:
|
|
|
|
|
|
|
|
|
|
```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)
|
|
|
|
|
````
|