当前位置:  开发笔记 > 编程语言 > 正文

如何使用反射检查方法是否是静态的?

如何解决《如何使用反射检查方法是否是静态的?》经验,为你挑选了3个好方法。

我想在运行时发现一个类的静态方法,我该怎么做?或者,如何区分静态和非静态方法.



1> Tom Hawtin -..:

使用Modifier.isStatic(method.getModifiers()).

/**
 * Returns the public static methods of a class or interface,
 *   including those declared in super classes and interfaces.
 */
public static List getStaticMethods(Class clazz) {
    List methods = new ArrayList();
    for (Method method : clazz.getMethods()) {
        if (Modifier.isStatic(method.getModifiers())) {
            methods.add(method);
        }
    }
    return Collections.unmodifiableList(methods);
}

注意:从安全角度来看,此方法实际上很危险.Class.getMethods"绕过[es] SecurityManager检查,具体取决于直接调用者的类加载器"(参见Java安全编码指南的第6节).

免责声明:未经测试甚至编译.

Modifier应谨慎使用注意事项.以int表示的标志不是类型安全的.一个常见的错误是在一个它不适用的反射对象类型上测试一个修饰符标志.情况可能是相同位置的标志被设置为表示一些其他信息.


是的,谢谢.虽然我声称这个名字是一个错误的设计.修饰符不表示修饰符.但是整个班级都是一个错误的设计.也可能是反思.

2> bruno conde..:

你可以得到这样的静态方法:

for (Method m : MyClass.class.getMethods()) {
   if (Modifier.isStatic(m.getModifiers()))
      System.out.println("Static Method: " + m.getName());
}



3> Daniel Spiew..:

为了充实前面的(正确的)答案,这里有一个完整的代码片段,可以满足您的需求(忽略异常):

public Method[] getStatics(Class c) {
    Method[] all = c.getDeclaredMethods()
    List back = new ArrayList();

    for (Method m : all) {
        if (Modifier.isStatic(m.getModifiers())) {
            back.add(m);
        }
    }

    return back.toArray(new Method[back.size()]);
}

推荐阅读
jerry613
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有