I have a non-generic code like this:
class List {
List intersect(List out, List other) {
if (out == null) out = new List();
// insert elements common to $this and $other into $out
return out;
}
}
That method is safely used with mixed types of contained objects:
othercan contain objects of more specific type (subclass)outcan contain objects of less specific type (superclass)
E.g. (not from real code)
List<Number> my;
List<Integer> other;
List<Object> result = new();
result = my.intersect(result, other);
What I need is therefore:
class List<T> {
<R super T> List<R> intersect(List<R> out, List<? extends T> other);
}
However this does not compile. Generics FAQ states that lower bound for type parameter does not make sense but I can't see it given above example.
The closest I get is:
List<? super T> intersect(List<? super T> out, List<? extends T> other);
But this requires explicit casting of return value at the call site.
Is it possible to generify this method in a way that would be type safe for all existing usages ?
UPDATE: In case it is not obvious: this is not a java.util.List (which is an interface btw.) but a custom class. Irrelevant parts were omitted, but method signature is exactly as shown (except for access level).
UPDATE2: By type-safe I mean restricted as much as possible. Ideally all parameters shall observe both rules laid down above.
intersecta static method? If not, I'm a bit confused why there's the list instance itself and 2 list arguments? – Bert F Feb 7 '11 at 0:45