There is a following situation:
A class is given, with a generic field in it. Is it possible to instantiate the field at runtime with an instance of T?
class Root<T>{
T var;
Root(){
//instantiate var with an instance of T here
}
}
|
There is a following situation:
|
||||
|
|
|
If you have a class which extends Otherwise, the best bet is to pass a |
||||
|
|
|
Unless you are given an instance of |
|||
|
|
|
There is no way to know the type of However, you can add a new parameter to your constructor of type
This supposes your |
|||
|
|
|
No. If you really need this functionality you will need to pass in the type in your constructor. Like this:
This will create an instance via reflection. It will only work if the class passed in has a default constructor. Otherwise you'll need to extend the example. |
|||
|
|