1

ジェネリック型のパラメーターを使用するメソッドを検討するときに問題が発生することがわかりましたが、ジェネリック型のパラメーターを使用しないメソッドでも同じコードが正常に機能します。これが私のコードです:

public class Test {

    public static void method1(Integer i) {
    }

    public static void method2(List<Integer> i) {
    }

    public static void main(String[] args) throws Exception {

        Integer i = 5;
        List<Integer> iList = new ArrayList<Integer>();
        Method method1 = Test.class.getDeclaredMethod("method1", i.getClass());
        method1.invoke(Test.class, i);
        System.err.println("-------- method 1 ok -----------");
        Method method2 = Test.class.getDeclaredMethod("method2", iList.getClass());
        method2.invoke(Test.class, iList);
        System.err.println("-------- method 2 ok -----------");
    }

}

そして出力:

-------- method 1 ok -----------
Exception in thread "main" java.lang.NoSuchMethodException: 
Test.method2(java.util.ArrayList)
    at java.lang.Class.getDeclaredMethod(Class.java:1954)
    at Test.main(Test.java:24)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)

ジェネリック型のパラメータに魔法はありますか?

4

2 に答える 2

4
Integer i = 5;
        List<Integer> iList = new ArrayList<Integer>();
        Method method1 = Test.class.getDeclaredMethod("method1", i.getClass());
        method1.invoke(Test.class, i);
        System.err.println("-------- method 1 ok -----------");
        Method method2 = Test.class.getDeclaredMethod("method2",
                 List.class);
        method2.invoke(Test.class, iList);
于 2012-08-17T07:52:07.733 に答える
3

ArrayListは具体的すぎます。これは、method2をリストを取るものとして定義しただけです(通常はそうする必要があります)。

List.classで試してください

于 2012-08-17T07:53:02.567 に答える