W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
原文鏈接:https://gopl-zh.github.io/ch12/ch12-08.html
我們的最后一個(gè)例子是使用reflect.Type來(lái)打印任意值的類型和枚舉它的方法:
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都提供了一個(gè)Method方法。每次t.Method(i)調(diào)用將一個(gè)reflect.Method的實(shí)例,對(duì)應(yīng)一個(gè)用于描述一個(gè)方法的名稱和類型的結(jié)構(gòu)體。每次v.Method(i)方法調(diào)用都返回一個(gè)reflect.Value以表示對(duì)應(yīng)的值(§6.4),也就是一個(gè)方法是綁到它的接收者的。使用reflect.Value.Call方法(我們這里沒(méi)有演示),將可以調(diào)用一個(gè)Func類型的Value,但是這個(gè)例子中只用到了它的類型。
這是屬于time.Duration和*strings.Replacer
兩個(gè)類型的方法:
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)
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: