如何在java中实例化通用数组类型?

时间:2012-09-05 14:09:16

标签: java arrays generics multidimensional-array instantiation

我在实例化泛型类型数组时遇到问题,这是我的代码:

public final class MatrixOperations<T extends Number>
{
    /**
 * <p>This method gets the transpose of any matrix passed in to it as argument</p>
 * @param matrix This is the matrix to be transposed
 * @param rows  The number of rows in this matrix
 * @param cols  The number of columns in this matrix
 * @return The transpose of the matrix
 */
public T[][] getTranspose(T[][] matrix, int rows, int cols)
{
    T[][] transpose = new T[rows][cols];//Error: generic array creation
    for(int x = 0; x < cols; x++)
    {
        for(int y = 0; y < rows; y++)
        {
            transpose[x][y] = matrix[y][x];
        }
    }
    return transpose;
}
}

我只是希望这个方法能够转置一个矩阵,它的类是Number的子类型,并返回指定类型的矩阵的转置。任何人的帮助将受到高度赞赏。感谢。

4 个答案:

答案 0 :(得分:4)

在运行时不知道该类型,因此您不能以这种方式使用它。相反,你需要像。

Class type = matrix.getClass().getComponentType().getComponentType();
T[][] transpose = (T[][]) Array.newInstance(type, rows, cols);

注意:泛型不能是原语,因此您将无法使用double[][]

感谢@newacct建议您一步分配。

答案 1 :(得分:4)

您可以使用java.lang.reflect.Array动态实例化给定类型的数组。您只需要传入所需类型的Class对象,如下所示:

public T[][] getTranspose(Class<T> arrayType, T[][] matrix, int rows, int cols)
{

    T[][] transpose = (T[][]) Array.newInstance(arrayType, rows,cols);
    for (int x = 0; x < cols; x++)
    {
        for (int y = 0; y < rows; y++)
        {
            transpose[x][y] = matrix[y][x];
        }
    }
    return transpose;
}

public static void main(String args[]) {
    MatrixOperations<Integer> mo = new MatrixOperations<>();
    Integer[][] i = mo.getTranspose(Integer.class, new Integer[2][2], 2, 2);
    i[1][1] = new Integer(13);  
}

答案 2 :(得分:2)

您可以使用此功能一次创建两个尺寸:

    // this is really a Class<? extends T> but the compiler can't verify that ...
    final Class<?> tClass = matrix.getClass().getComponentType().getComponentType();
    // ... so this contains an unchecked cast.
    @SuppressWarnings("unchecked")
    T[][] transpose = (T[][]) Array.newInstance(tClass, cols, rows);

答案 3 :(得分:0)