Is it true to say that Java generics are all late binding ? Is an ArrayList type ignored until runtime ? Why is it ? Thank you.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
No.
No.
It isn't. |
|||||||||||||||
|
it's rather the other way around. Java Generics are taken into account in compile time. In runtime, there is erasure.
|
|||||||
|
|
Generics and late binding doesn't have anything to do with each other. The ArrayList type is not ignored at runtime. Its generic parameter type is often ignored through type erasure. This is done for backward compatibility. |
|||||||
|