我有一个抽象类和 2 个(目前)子类。
主要课程:
public abstract class Entite<T> {
public Entite(int ligne, int colonne, Etat etat) {
...
}
/* Some method here*/
}
女儿 1(女儿 2 几乎相等):
public class Cellule extends Entite<Cellule> {
public Cellule(int ligne, int colonne, Etat etat) {
super(ligne, colonne, etat);
}
/** Override some method here */
}
现在我想在其他类中使用泛型。
public class Grille<T extends Entite<T>> {
protected final T[][] grille;
public Grille(int dimension, int nbCellulesInitiales, Class<T> classe) {
grille = (T[][])Array.newInstance(classe, 1); // It's good ?
Etat etat = Etat.Morte;
for (int i = 0; i < dimension; i++) {
for (int j = 0; j < dimension; j++) {
grille[i][j] = new T(i, j, etat); //How can I create T (Cellule) object ?
}
}
Java 对我来说是新的,所以我希望我没有犯白痴错误;)