Do you think it is possible to create something similar to this?
private ArrayList increaseSizeArray(ArrayList array_test, GenericClass) {
array_test.add(new GenericObject()); // instance of GenericClass
return array_test;
}
|
|
|
Yes, you can.
Usage example:
|
|||||||
|
|
You could pass a java.lang.Class object and instantiate it using reflection. It is not related to Generics, though. |
|||
|
|
|
You can do:
and by the way, you cannot define new Generic object like: |
|||
|
|