选择当前类的方法而不是继承类的方法
假设我有这些类:
class A{
void f();
}
class B extends A{
void g();
}
当我这样做时我会得到什么:
Class.forename("B").getMethods();
我会得到方法 f
和 g
????
如果是,那么如何获取当前类的方法而不是它的父类(在本例中为方法 g()
)???
谢谢额头!
Suppose that I have these classes:
class A{
void f();
}
class B extends A{
void g();
}
what will I get when I do:
Class.forename("B").getMethods();
will I get the methods f
and g
????
if yes, so how to get just the methods of the current class and not it's father class (In this example the method g()
) ????
thanks forehead!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Class.getDeclaredMethods 而不是 getMethods。
Use Class.getDeclaredMethods instead of getMethods.
使用 getDeclaredMethods() API。
来自 java api 参考 -
Use getDeclaredMethods() api.
from java api reference -