17 lines
344 B
Java
17 lines
344 B
Java
// generics/CRGWithBasicHolder.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
|
|
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
|
|
*/
|