Created
October 12, 2011 10:03
-
-
Save jberkel/1280798 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//: generics/SelfBounding.java | |
class SelfBounded<T extends SelfBounded<T>> { | |
T element; | |
SelfBounded<T> set(T arg) { | |
element = arg; | |
return this; | |
} | |
T get() { return element; } | |
} | |
class A extends SelfBounded<A> {} | |
class B extends SelfBounded<A> {} // Also OK | |
class C extends SelfBounded<C> { | |
C setAndGet(C arg) { set(arg); return get(); } | |
} | |
class D {} | |
// Can't do this: | |
// class E extends SelfBounded<D> {} | |
// Compile error: Type parameter D is not within its bound | |
public class SelfBounding { | |
public static void main(String[] args) { | |
A a = new A(); | |
a.set(new A()); | |
a = a.set(new A()).get(); | |
a = a.get(); | |
C c = new C(); | |
c = c.setAndGet(new C()); | |
} | |
} ///:~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment