如何在Java中初始化泛型变量?

时间:2013-06-30 18:28:34

标签: java generics initialization

我正在尝试编写一个方法,其中我需要创建一个通用类型T的临时变量sum。但是,我得到错误"局部变量sum可能尚未初始化& #34 ;.如何初始化通用变量?我无法将其设置为0或0.0,我无法在任何地方找到有关如何处理此信息的信息。以下是我正在使用的代码部分:

public Matrix<T,A> multiply(Matrix<T,A> right) throws MatrixException
{
    Matrix<T,A> temp = new Matrix<T,A>(arithmetics, rowSize, columnSize);

    T sum, product;

    if (rowSize != right.columnSize)
        throw new MatrixException("Row size of first matrix must match column size " 
                + "of second matrix to multiply");

    setup(temp,rowSize,columnSize);

    for (int i = 0; i < rowSize; i++){
        for (int j = 0; j < right.columnSize; j++) {
            product = (arithmetics.multiply(matrix[i][j] , right.matrix[j][i]));
            sum = arithmetics.add(product, sum);
            temp.matrix[i][j] = sum;
        }
    }
    return temp;
}

我不确定这是否有助于澄清,但这是我的界面Arithmetics:

public interface Arithmetics<T> {

public T zero();
public T add( T a, T b );
public T subtract( T a, T b);
public T multiply (T a, T b);
public T parseString( String str );
public String toString( T a );

}

这是我的一个类DoubleArithmetics,只是为了展示我如何实现界面:

public class DoubleArithmetics implements Arithmetics<Double> {

protected Double value;

public Double zero() 
{

    return new Double(0);
}

public Double add( Double a, Double b ) 
{

    return new Double(a.doubleValue()+b.doubleValue());
}

public Double subtract (Double a, Double b)
{
    return new Double(a.doubleValue()-b.doubleValue());
}

public Double multiply (Double a, Double b)
{
    return new Double(a.doubleValue()*b.doubleValue());
}

public Double parseString( String str )
{
    return Double.parseDouble(str);
}

public String toString( Double a )
{
    return a.toString();
}
}

2 个答案:

答案 0 :(得分:3)

只需使用您界面上已有的zero方法初始化sum

T sum = arithmetics.zero();

对于非零初始化,您还可以添加采用longdouble值的方法,并为其返回T

public interface Arithmetics<T> {

    public T zero();
    public T create(long l);
    public T create(double d);
    public T add( T a, T b );
    public T subtract( T a, T b);
    public T multiply (T a, T b);
    public T parseString( String str );
    public String toString( T a );
}

然后实施它们:

public Double create(long l) {
    return new Double(l);
}

public Double create(double d) {
    return new Double(d);
}

最后,使用它们:

T one = arithmetics.create(1);

答案 1 :(得分:0)

由于类型擦除,在Java中实例化泛型有点棘手。

我的方法是将两个项传递给你的泛型类'构造函数:(1)一个特定于类型T的java.lang.reflect.Constructor; (2)一个Object []数组,其中包含一个特定于T类型的默认值。

当您稍后想要实例化并初始化类型T时,您需要调用Constructor.newInstance(Object [])。在下面的代码中,MyGenericClass类代表您的泛型类(看起来像是从原始帖子中称为Matrix)。

我从InstantiationException for newInstance()Create instance of generic type in Java?

获得了解决方案
public class MyGenericClass<T>
{
    Constructor _constructorForT;
    Object[] _initialValueForT;

    public MyGenericClass(Constructor constructorForT, 
                          Object[] initialValueForT)
    {
        _constructorForT = constructorForT;
        _initialValueForT = initialValueForT;
    }

    public void doSomething() 
    {
        T sum = initializeT(_constructorForT, _initialValueForT);

        System.out.printf("d = %f\n", sum);
    }

    @SuppressWarnings("unchecked")
    private T initializeT(Constructor constructor, Object[] args)
    {
        T result = null;

        try
        {
            result = (T) constructor.newInstance(args);
        }
        catch (java.lang.InstantiationException ex)
        {
        }
        catch (java.lang.IllegalAccessException ex)
        {
        }
        catch (java.lang.reflect.InvocationTargetException ex)
        {
        }

        return result;
    }

    public static void main(String argv[]) throws Exception
    {
        Constructor constructor = 
            Double.class.getConstructor(new Class[]{double.class});

        Object[] initialValue = new Object[] { new Double(42.0) };

        MyGenericClass<Double> myGenericClass = 
            new MyGenericClass<Double>(constructor, initialValue);

        myGenericClass.doSomething();

    }
}