Java 反射 - 方法自省

发布于 2024-11-07 05:25:05 字数 215 浏览 2 评论 0原文

Method[] theMethods = myClass.getMethods();
for( Method m : theMethods ){
...

}

该数组是否包含该类的所有方法?公共的、私有的、受保护的以及所有继承的? 我是否可以访问所有这些内容(主要是私有和受保护的内容)?

如果没有,我怎样才能获取一个类的所有方法并访问所有方法?

Method[] theMethods = myClass.getMethods();
for( Method m : theMethods ){
...

}

Will the array include all the methods of the class? public, private, protected and all inherited?
Will I have access to all of them mainly the private and protected ones?

If not, how can I get all the methods of a class and also have access to all?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

冬天旳寂寞 2024-11-14 05:25:05

Javadoc 使得这很清楚:

返回一个包含 Method 对象的数组,该对象反映了此 Class 对象所表示的类或接口的所有公共成员方法,包括由类或接口声明的方法以及从超类和超接口继承的方法。

要获取非公共方法,请使用 getDeclaredMethods

The Javadoc makes this pretty clear:

Returns an array containing Method objects reflecting all the public member methods of the class or interface represented by this Class object, including those declared by the class or interface and those inherited from superclasses and superinterfaces.

To get at non-public methods, use getDeclaredMethods.

烟若柳尘 2024-11-14 05:25:05

要获取类的所有方法,您需要在该类及其所有超类上递归调用 getDeclaredMethods() 。根据您想要实现的目标,您可能需要删除由于方法重载而可能发生的重复项。

To get all methods of a class you need to recursively call getDeclaredMethods() on the class and all it's superclasses. Depending on what you want to achive with it you might need to remove duplicates which can occur due to method overloading.

世界等同你 2024-11-14 05:25:05

来自 API 文档

返回包含方法的数组
反映全体公众的对象
类的成员方法或
该类代表的接口
对象,包括那些声明的对象
类或接口以及那些
从超类继承并且
超级接口。

所以它只能为你提供公共方法。要获取所有方法,您必须在类及其所有超类上使用 getDeclaredMethods()(通过 getSuperclass())。

为了调用非公共方法,您可以在 Method 对象上使用 setAccessible(true)(如果安全管理器允许)。

From the API doc:

Returns an array containing Method
objects reflecting all the public
member methods of the class or
interface represented by this Class
object, including those declared by
the class or interface and those
inherited from superclasses and
superinterfaces.

So it gets you only public methods. To get all methods, you have to use getDeclaredMethods() on the class and all its superclasses (via getSuperclass()).

In order to call non-public methods, you can use setAccessible(true) on the Method object (if the security manager allows it).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文