0

我有一个通用类 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**
        }
    }
}
}
4

2 回答 2

2

我想你想要

Storage<T extends Comparable<T>>
StoragePlus<T extends Comparable<T>> extends Storage<T>

在 equals 中,您将只能转换ObjectStorage<?>. 否则,您需要@SuppressWarnings.

于 2012-05-30T21:18:11.213 回答
0

因为你没有限制Tfor StoragePlus

于 2012-05-30T21:17:14.187 回答