27

指定されたクラスの値:

public class Value {

    private int xVal1;
    private int xVal2; 
    private double pVal;


    // constructor of the Value class 

    public Value(int _xVal1 ,int _xVal2 , double _pVal)
    {
        this.xVal1 = _xVal1;
        this.xVal2 = _xVal2;
        this.pVal = _pVal;
    }

    public int getX1val()
    {
        return this.xVal1;
    }


...
}

を使用してそのクラスの新しいインスタンスを作成しようとしていますreflection:

メインから:

    .... // some code 
    ....
    ....
    int _xval1 = Integer.parseInt(getCharacterDataFromElement(line));
    int _xval2 = Integer.parseInt(getCharacterDataFromElement(line2));
    double _pval = Double.parseDouble(getCharacterDataFromElement(line3));

     Class c = null;
     c = Class.forName("Value");
     Object o = c.newInstance(_xval1,_xval2,_pval);

...

これは機能しません、Eclipseの出力:The method newInstance() in the type Class is not applicable for the arguments (int, int, double)

reflectionもしそうなら、どのように新しい値オブジェクトを作成できますConstructorValue?

ありがとう

4

2 に答える 2

48

このための正確なコンストラクターを見つける必要があります。Class.newInstance()nullary コンストラクターを呼び出すためにのみ使用できます。だから書く

final Value v = Value.class.getConstructor(
   int.class, int.class, double.class).newInstance(_xval1,_xval2,_pval);
于 2012-05-06T11:51:22.020 に答える
3

このClass.newInstance()メソッドは、引数のないコンストラクターのみを呼び出すことができます。パラメーター化されたコンストラクターでリフレクションを使用してオブジェクトを作成する場合は、使用する必要がありますConstructor.newInstance()。あなたは単に書くことができます

Constructor<Value> constructor = Value.class.getConstructor(int.class, int.class, double.class);
Value obj = constructor.newInstance(_xval1,_xval2,_pval);

詳細については、Creating objects through Reflection in Java with Example を参照してください。

于 2016-05-16T16:32:07.647 に答える