2015-04-20 15:36:01 -07:00
|
|
|
|
//: generics/CRGWithBasicHolder.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
|
|
|
|
|
class Subtype extends BasicHolder<Subtype> {}
|
|
|
|
|
|
|
|
|
|
public class CRGWithBasicHolder {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
Subtype st1 = new Subtype(), st2 = new Subtype();
|
|
|
|
|
st1.set(st2);
|
|
|
|
|
Subtype st3 = st1.get();
|
|
|
|
|
st1.f();
|
|
|
|
|
}
|
|
|
|
|
} /* Output:
|
|
|
|
|
Subtype
|
|
|
|
|
*///:~
|