Java Generics-예외 없음
제네릭 클래스는 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;
}
}