次のようなコードがあります。
public class Main {
private static abstract class Bar {}
private static class SubBar extends Bar {}
private static abstract class Baz<T extends Bar> {
private T t;
public void setT(T t) {
this.t = t;
}
}
private static class SubBaz extends Baz<SubBar> {}
private void foo(Baz<? extends Bar> baz, Bar bar) {
baz.setT(bar);
}
}
その結果、エラーが発生します。
error: method setT in class Baz<T> cannot be applied to given types;
required: CAP#1
found: Bar
reason: actual argument Bar cannot be converted to CAP#1 by method invocation conversion
where T is a type-variable:
T extends Bar declared in class Baz
where CAP#1 is a fresh type-variable:
CAP#1 extends Bar from capture of ? extends Bar
理由がわかりません。メソッド setT は Bar を拡張するものを受け入れる必要があり、Bar クラスのものを渡しています。