我有一个通用类 Storage 和另一个通用类 StoragePlus。对于下面带有粗体注释的行,我收到了一个有界错误不匹配错误。
这是我第一堂课的代码。
public class Storage<T extends Comparable<? super T>> {
//private T t;
private T[] isafe;
public int max;
private int nextIndex;
public Storage(int maxNum, T[] seedArr){
if(maxNum < 0){
throw new IllegalArgumentException();
}
else{
isafe = Arrays.copyOf(seedArr, maxNum);
nextIndex = 0;
max = maxNum;
}
}
这是第二类的代码。
public class StoragePlus <T> extends Storage<T>{ **//getting an error here**
public StoragePlus(int maxNum, T[] arr){
super(maxNum,(Comparable[]) arr);
}
@Override
public boolean equals(Object obj){
if(obj == null|| obj.getClass() != this.getClass()){
return false;
}
else{
if(obj == this){
return true;
}
else{
@SuppressWarnings("unchecked")
Storage<?> temp = (Storage<T>) obj; **// also getting an error here**
}
}
}
}