I have the following JAVA mess that is very unclear to me:
a generic Interface with two generic Types A and B, such as AIter<A,B>
another generic Interface with an additional generic Type C, like this: BIter<A,B,C> extends AIter<A,B>
one generic class, ClassA<D>, which recursively implements the first Interface AIter as an inner class like this: ThisIter implements AIter<Something,ThisIter>
another generic class, ClassB<D,E>, which recursively implements the second interface BIter as an inner class like this: ThisIter implements BIter<Something,ThisIter,SomethingElse>
Both of the classes have a function called public ThisIter giveIter(); which should return an instance of the inner class (each of the inner classes has a similar function which also returns a new instance of itself, but with a different parameter).
Is it possible to implement ClassB as subtype of ClassA? (Given that the generic Types are the same, such as ClassA<MyString> and ClassB<MyString, somethingelse>)
I can't seem to make it happen, because the instances of ThisIter and therefor the return types of giveIter() are incompatible.
Generally asked, is an implementation of a subinterface (n)ever a subtype of an implementation of the interface itself?
IterA
public interface IterA<A,B> {}
IterB
public interface IterB<A,B,C> extends IterA<A,B> {}
ClassA:
public class ClassA<L> {
Node root;
public ClassA() {
root= new Node();
}
protected class Node {
/*...*/
}
protected class Edge {
/*...*/
L varL;
}
protected class ThisIter implements IterA<Edge,ThisIter> {
/*...*/
}
public IterA<Edge,ThisIter> assoc() {
return new ThisIter(root);
}
}
ClassB:
public class ClassB<L,N> {
Node root;
public ClassB() {
root= new Node();
}
protected class Node {
/*...*/
N varN;
}
protected class Edge {
/*...*/
L varL;
}
protected class ThisIter implements IterB<Edge,ThisIter,N> {
/*...*/
}
public IterB<Edge,ThisIter,N> assoc() {
return new ThisIter(root);
}
}