登录
首页 >  Golang >  Go教程

Go语言使用reflect.Type显示一个类型的方法集

来源:云海天教程

时间:2023-01-29 13:27:09 332浏览 收藏

在Golang实战开发的过程中,我们经常会遇到一些这样那样的问题,然后要卡好半天,等问题解决了才发现原来一些细节知识点还是没有掌握好。今天golang学习网就整理分享《Go语言使用reflect.Type显示一个类型的方法集》,聊聊反射,希望可以帮助到正在努力赚钱的你。

本节通过示例来演示如何使用 reflect.Type 来打印任意值的类型和枚举它的方法:

// Print prints the method set of the value x.func Print(x interface{}) { v := reflect.ValueOf(x) t := v.Type() fmt.Printf("type %s", t) for i := 0; i reflect.Type 和 reflect.Value 都提供了一个 Method 方法。每次 t.Method(i) 调用将一个 reflect.Method 的实例,对应一个用于描述一个方法的名称和类型的结构体。每次 v.Method(i) 方法调用都返回一个 reflect.Value 以表示对应的值,也就是一个方法是帮到它的接收者的。

使用 reflect.Value.Call 方法,将可以调用一个 Func 类型的 Value,但是这个例子中只用到了它的类型。这是属于 time.Duration 和 *strings.Replacer 两个类型的方法:

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)
`

今天关于《Go语言使用reflect.Type显示一个类型的方法集》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

声明:本文转载于:云海天教程 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>