Something like this:
class C {
typeof(this) foo() { return this; }
}
Well, I know it's impossible in Java 6, so I'll be glad to hear if I can do it in Java 7.
EDIT
This should be useful for chaining method calls, and avoid to create temporary local variables, like this:
class Entity {
typeof(this) refresh();
typeof(this) clone();
typeof(this) detach();
}
class FooEntity extends Entity {
@Override
typeof(this) detach() {
fooLink21.removeRef(this);
bar39.detach();
return this;
}
void doSomeInteresting() {}
}
fooEntity.clone().detach().doSomeInteresting();
and lot more.
I deem it should be very easy to add this function to compiler, well maybe I should hack into openjdk or gcj maybe?
BTW, I had never succeeded to rebuild the openjdk.
<T extends C> T foo() {return this;}is that what you want? Hard to determine from the question. – MeBigFatGuy Apr 25 '11 at 13:11