ch12-8 done

Fixes #117
pull/1/head
chai2010 2015-12-31 22:37:36 +08:00
parent 3f5ea69311
commit 71c36b054b
1 changed files with 42 additions and 1 deletions

View File

@ -1,3 +1,44 @@
## 12.8. 顯示一個類型的方法集
TODO
我們的最後一個例子是使用reflect.Type來打印任意值的類型和枚舉它的方法
```Go
gopl.io/ch12/methods
// 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)
````