在构造函数中使用参数化类型从name实例化类

时间:2018-06-04 18:48:29

标签: java generics reflection constructor

以某种方式可以使用构造函数参数作为参数化类型从name创建对象。我怀疑,因为在运行时类型被删除。是否有类似问题的解决方法?

基本上我的情况是这样的:

抽象通用:

public abstract class Parameter<T> {

    private String parameterName = this.getClass().getName();
    private T minValue;
    private T maxValue;

    public ParameterJson<T> toJson() {
        ParameterJson<T> result = new ParameterJson<>();
        result.setName(this.parameterName);
        result.setMinValue(this.minValue);
        result.setMaxValue(this.maxValue);
        return result;
    }

}

实现:

public class Amount extends Parameter<Double> {

    public Amount(Double minValue, Double maxValue) {
        super(minValue, maxValue);
    }
}

名称参数:

public class ParameterJson<T> implements Serializable {

    private String name;
    private T minValue;
    private T maxValue;

    public Parameter<T> toObject()  {

        Object object = null;
        try {
            Class<Parameter<T>> clazz = (Class<Parameter<T>>) Class.forName(this.name); //unchecked cast
            Constructor<?> cons = clazz.getConstructor(Double.class, Double.class);
            object = cons.newInstance(this.minValue, this.maxValue);  // it works because for now I have only this case but is not typesafe
        } catch (ClassNotFoundException | NoSuchMethodException | InstantiationException | IllegalAccessException  | InvocationTargetException e) {
            e.printStackTrace();
        }
        return (Parameter<T>) object; ////unchecked cast
    }

我不能使用普通的json序列化/反序列化,因为我正在使用jsondb,因为它存在一些限制,通过接口类型存储不同对象的列表我需要通过它注释的文档类来保存它( ParameterJson)并根据记录的名称恢复早期的对象。

1 个答案:

答案 0 :(得分:1)

如果您已经提取了minValue&amp; maxValue对象,这些对象应该是您想要的类型,并且可以使用:

Class<Parameter<T>> clazz = (Class<Parameter<T>>) Class.forName(this.name); //unchecked cast
Constructor<?> cons = clazz.getConstructor(minValue.getClass(), maxValue.getClass());
object = cons.newInstance(minValue, maxValue);