"One of the notable features of Java generics is the erasure of generic types in the virtual
machine. Perhaps surprisingly, the erased classes still retain some faint memory of their
generic origin"
Core Java Vol I (8th Ed) P. 641
Somehow this reminds me of weak references, is this correct?
Can we read this information somehow?
I assume it has to do with the fact that when you compile the code, the bytecode still knows that it is generic, so if you write new code that interacts with this compiled class, it will be able to perform type safety checks, as opposed to compiled code that used raw types. All the erasure actually takes place right before run time. This is when all generic information is discarded.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.