Where is the definition of class stored in memory ?
|
|
It depends on which Java you're talking about
See the JVM spec. That said, Sun Java has a section of memory called the permanent generation, which includes class definitions. Because of its original intent (a relatively small area for mostly static classes), the permanent generation doesn't always fit well with dynamic langauges targetting the JVM. See this discussion of JRuby issues. That is part of the motivation for the Da Vinci Machine project, which aims to improve VM support for such languages. |
||||
|
|