原始碼如下跳至下面提示符,這段程式碼顯然是無法編譯的
我認為一個原因是
BoundedEcho<String> stringEcho = new BoundedEcho<String>();
這裡的String無法繼承Number,他不是String的子類別?這樣理解對麼?
然後另一個問題是,最後那段我傳入了一個new BoundedEcho<Integer>
object, 而且他是BoundedEcho<T>的, 為什麼這裡會報錯呢?
是否將BoundedEcho
改為public class BoundedEcho<? extends Number> {...}
就對了?
原始程式碼在這裡
#public class BoundedEcho<T extends Number> {
public T echo(T value) {
return value;
}
public BoundedEcho<T> echo(BoundedEcho<T> value) {
return value;
}
}
public class BoundedEchoChamber{
public static void main(String[] args) {
BoundedEcho<Number> numberEcho = new BoundedEcho<Number>();
numberEcho.echo(10);
numberEcho.echo(10d);
numberEcho.echo(10f);
numberEcho.echo(10L);
BoundedEcho<String> stringEcho = new BoundedEcho<String>();
numberEcho.echo(new BoundedEcho<Integer>());
numberEcho.echo(new BoundedEcho<Double>());
numberEcho.echo(new BoundedEcho<Float>());
numberEcho.echo(new BoundedEcho<Long>());
}
}
过去多啦不再A梦2017-05-17 10:05:13
問題出在這兩句
public BoundedEcho<T> echo(BoundedEcho<T> value) {
return value;
}
BoundedEcho<Number> numberEcho = new BoundedEcho<Number>();
實例化的時候你把T宣告成了Number,之後呼叫就必須是BoundedEcho