Say I want to do something like
public class Container<C extends Member> {
public void foo() {
C newC = new C();
}
}
I realize that this will not work, but what is the correct Java idiom for this?
|
|
The generic type C is erased at runtime to java.lang.Object. There is no way of instantiating an erased generic type. It seems more like you want some sort of factory creational pattern?
If this is the case, you might want to look at using dependency injection and frameworks like Spring, or Guice. |
|||
|
|
|
The typical idiom is indroducing a type tag passed in constructor:
|
||||
|
|