J'ai un problème avec l'instanciation d'un tableau de type générique, voici mon code :
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;
}
}
Je veux juste que cette méthode soit capable de transposer une matrice dont la classe est un sous-type de Number et de retourner la transposition de la matrice dans le type spécifié. L'aide de quiconque serait très appréciée. Merci.