I have got a template class as follows:
class MyClass<T>
{
T field;
public void myMethod()
{
field = new T(); // gives compiler error
}
}
How do I create a new instance of T in my class?
|
I have got a template class as follows:
How do I create a new instance of T in my class? |
||||
|
|
|
You need to provide a Class object (or a constructor) to your object, and use reflection. After type erasure, all that is known about T is that it is some subclass of Object.
|
||||
|
|
|
This may be more heavyweight than what you're looking for, but it will also work. Note that if you take this approach, it would make more sense to inject the factory into MyClass when it is constructed instead of passing it into your method each time it is called.
|
|||||
|
|
Can't do better than Erickson, but while looking for a solution, I found an article that might interest you: Java theory and practice: Generics gotchas. |
|||
|
|
|
Another non-reflective approach is to use a hybrid Builder / Abstract Factory pattern. In Effective Java, Joshua Bloch goes over the Builder pattern in detail, and advocates a generic Builder interface:
Concrete builders can implement this interface, and outside classes can use the concrete builder to configure the Builder as required. The builder can be passed to MyClass as a Using this pattern, you can get new instances of |
|||
|
|
|
EDIT: Sorry. I overlooked that you are using Java. The code below works in C#. Use the Example:
|
|||
|
|
|
If you're willing to subclass you can avoid erasure as well, check out http://www.artima.com/weblogs/viewpost.jsp?thread=208860 |
|||
|
|