How Java Handles Generic Types in internally.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lovetopravin
    New Member
    • Oct 2013
    • 16

    How Java Handles Generic Types in internally.

    I want to Know how java handles generics internally.
    it handle by JAVA COMPILER or at Run Time By JVM...
  • chaarmann
    Recognized Expert Contributor
    • Nov 2007
    • 785

    #2
    It is handles by the Java compiler.

    Comment

    • Nepomuk
      Recognized Expert Specialist
      • Aug 2007
      • 3111

      #3
      If you want to know more about how the java compiler works with Generics, you'll probably want to learn about Type Erasure too.

      Comment

      Working...