クラスの静的メソッドのみを実行時に発見したいのですが、どうすればよいですか?または、静的メソッドと非静的メソッドを区別する方法。
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<Method> getStaticMethods(Class<?> clazz) {
List<Method> methods = new ArrayList<Method>();
for (Method method : clazz.getMethods()) {
if (Modifier.isStatic(method.getModifiers())) {
methods.add(method);
}
}
return Collections.unmodifiableList(methods);
}
注:この方法は、セキュリティの観点から実際には危険です。 Class.getMethods "bypass [es] SecurityManagerは、直接の呼び出し元のクラスローダーに応じてチェックします"(Javaセキュアコーディングガイドライン)のセクション6を参照)。
免責事項:テストもコンパイルもされていません。
注Modifier
は注意して使用する必要があります。 intとして表されるフラグはタイプセーフではありません。よくある間違いは、適用されないタイプのリフレクションオブジェクトで修飾子フラグをテストすることです。同じ位置にあるフラグが他の情報を示すために設定されている場合があります。
次のような静的メソッドを取得できます。
for (Method m : MyClass.class.getMethods()) {
if (Modifier.isStatic(m.getModifiers()))
System.out.println("Static Method: " + m.getName());
}
前の(正しい)答えを具体化するために、あなたが望むことを行う完全なコードスニペットがあります(例外は無視されます):
public Method[] getStatics(Class<?> c) {
Method[] all = c.getDeclaredMethods()
List<Method> back = new ArrayList<Method>();
for (Method m : all) {
if (Modifier.isStatic(m.getModifiers())) {
back.add(m);
}
}
return back.toArray(new Method[back.size()]);
}