gpt4 book ai didi

java - 在使用反射检查类时如何避免从 Java 中的 Object 类继承的方法?

转载 作者:行者123 更新时间:2023-12-04 11:25:46 26 4
gpt4 key购买 nike

有什么方法可以避免从 Object 类继承的方法。我有以下代码:

public void testGetMethods() {
SomeClass sc = new SomeClass();
Class c = sc.getClass();
Method [] methods = c.getMethods();

for (Method method : methods) {
System.out.println(method.getName());
}
}

一切正常,但它还返回 Object 类的方法,如 hashCode、getClass、notify、equals 等。SomeClass 类应该只有两个自己的方法,即 m1 和 m2。

我只想打印这些方法 (m1, m2)。有什么办法可以实现这一目标吗?

最佳答案

使用 Class class's getDeclaredMethods() method .

Returns an array of Method objects reflecting all the methods declared by the class or interface represented by this Class object. This includes public, protected, default (package) access, and private methods, but excludes inherited methods.

Method[] declaredMethods = c.getDeclaredMethods();

关于java - 在使用反射检查类时如何避免从 Java 中的 Object 类继承的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22312008/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com