2015-04-20 15:36:01 -07:00
|
|
|
//: generics/CreatorGeneric.java
|
|
|
|
|
|
|
|
abstract class GenericWithCreate<T> {
|
|
|
|
final T element;
|
|
|
|
GenericWithCreate() { element = create(); }
|
|
|
|
abstract T create();
|
|
|
|
}
|
|
|
|
|
|
|
|
class X {}
|
|
|
|
|
|
|
|
class Creator extends GenericWithCreate<X> {
|
2015-05-05 11:20:13 -07:00
|
|
|
@Override
|
2015-04-20 15:36:01 -07:00
|
|
|
X create() { return new X(); }
|
|
|
|
void f() {
|
|
|
|
System.out.println(element.getClass().getSimpleName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class CreatorGeneric {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
Creator c = new Creator();
|
|
|
|
c.f();
|
|
|
|
}
|
|
|
|
} /* Output:
|
|
|
|
X
|
|
|
|
*///:~
|