英文:
How to list out the method name in an interface type?
问题
例如,
type FooService interface {
Foo1(x int) int
Foo2(x string) string
}
我想要做的是使用运行时反射获取列表 ["Foo1", "Foo2"]
。
英文:
For example,
type FooService interface {
Foo1(x int) int
Foo2(x string) string
}
What I am attempting to do is getting list ["Foo1", "Foo2"]
using runtime reflection.
答案1
得分: 7
尝试这个:
t := reflect.TypeOf((*FooService)(nil)).Elem()
var s []string
for i := 0; i < t.NumMethod(); i++ {
s = append(s, t.Method(i).Name)
}
获取接口类型的反射类型是比较棘手的部分。请参考这个链接中的解释。
英文:
Try this:
t := reflect.TypeOf((*FooService)(nil)).Elem()
var s []string
for i := 0; i < t.NumMethod(); i++ {
s = append(s, t.Method(i).Name)
}
Getting the reflect.Type for the interface type is the tricky part. See https://stackoverflow.com/questions/7132848/how-to-get-the-reflect-type-of-an-interface for an explanation.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论