When compiling this
import java.util.List;
public class Test {
public static class Subject {
}
public static class MySubject extends Subject {
}
public static class Step<TSubjectA extends Subject> {
public void doWork(TSubjectA subject) {
}
}
public static class Worker {
public static <TSubjectB extends Subject> void doWork(TSubjectB subject, List<Step<? extends TSubjectB>> steps) {
for (Step<? extends TSubjectB> step : steps) {
step.doWork(subject);
}
}
}
public static void main(String[] args) {
MySubject subject;
List<Step<? extends Subject>> steps;
Worker.doWork(subject, steps);
}
}
I get the error
Test.java:18: doWork(capture#95 of ? extends TSubjectB) in Test.Step cannot be applied to (TSubjectB)
From what I can see, subject is of type TSubjectB, which extends Subject. The type TSubjectA is a type which extends TSubjectB which extends Subject. So I should be able to pass subject to doWork and it should all be typesafe.
Am I missing something and it is actually not typesafe, or is this just a limitation of Java's generics?