I came to a problem with interfaces in a program i'm making. I want to create a interface which have one of it's methods receiving/returning a reference to the type of the own object. It was something like:
public interface I {
? getSelf();
}
public class A implements I {
A getSelf() {
return this;
}
}
public class B implements I {
B getSelf() {
return this;
}
}
I cann't use an "I" where it's a "?" because I don't want to return a reference to the interface, but the class. I searched and found that there are no way to "self-refer" in java, so i cann't just substitute that "?" in the example for a "self" keyword or something like this. Actually, I came up to a solution that goes like
public interface I<SELF> {
SELF getSelf();
}
public class A implements I<A> {
A getSelf() {
return this;
}
}
public class B implements I<B> {
B getSelf() {
return this;
}
}
but it really seems like a workaround or something alike. I was wondering if there are any other way to do so?
I x; A = x.getSelf(); // only works for A objects B = x.getSelf(); // only works for B objects– Paul Jackson Nov 17 '11 at 14:16