my question is about type variables used in generic classes and methods,
why can't we do something like this T = new T(); "Construct an object of the type variable"
i know that generic information is erased during compilation, and everything is converted to
Object, so why doesn't the compiler assume that T is an object and let us construct it ??
|
|
|||
|
The problem is that at runtime the JVM does not know which class the There are workarounds, but it will not work as you propose.
Well, of course the runtime could just construct an instance of |
|||||||||
|
|
In addition to sleske's answer; if you need to create objects of T inside your generic class, the solution is to pass a |
|||||||
|
T[]for the same reason -- type erasure. – Christian Mann Oct 26 '10 at 8:38