1

を取得してIllegalArgumentExceptionいますが、理由がわかりません。

アクセスしようとしている関数:

private static Player checkEvents(Player[] players, GameMaster bananas)

問題のあるコード:

@Test
public void testCheckEvents() throws SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException {
    Game g = new Game();
    GameMaster gm = new GameMaster(4);
    Player[] p = new Player[] {new Player(gm), new Player(gm), new Player(gm), new Player(gm)};

    Method checkEvents = g.getClass().getDeclaredMethod("checkEvents", new Class[] {p.getClass(), GameMaster.class});
    checkEvents.setAccessible(true);

    checkEvents.invoke(p, gm); // fails here
}

失敗:

testCheckEvents(nth.bananas.GameTest)
java.lang.IllegalArgumentException: wrong number of arguments

私は何が間違っているのですか?

4

1 に答える 1

4

の最初の引数invokeは、メソッドを呼び出すオブジェクトでなければなりません:

checkEvents.invoke(g, p, gm)

メソッドはであるため、オブジェクト参照の代わりにstatic使用することもできます。nullg

于 2009-12-27T01:11:50.623 に答える