通用類不允許直接或間接擴充套件Throwable
類。
//The generic class Box<T> may not subclass java.lang.Throwable
class Box<T> extends Exception {}
//The generic class Box<T> may not subclass java.lang.Throwable
class Box1<T> extends Throwable {}
在一個方法中,不允許捕獲一個型別引數的範例,如下程式碼 -
public static <T extends Exception, J>
void execute(List<J> jobs) {
try {
for (J job : jobs){}
// compile-time error
//Cannot use the type parameter T in a catch block
} catch (T e) {
// ...
}
}
throws
子句中允許使用型別引數。
class Box<T extends Exception> {
private int t;
public void add(int t) throws T {
this.t = t;
}
public int get() {
return t;
}
}