Please Simple Question: where is the code stored a...
# server
a
Please Simple Question: where is the code stored after jvm work and loaded the needed classes, are the instruction set in the stack or where?
😶 3
v
What has this question to do with Kotlin? Kotlin compiles to Java class files, so it is the same as for Java. In older runtimes it is in the perm gen space, in newer runtimes it is in the metaspace
👍 1
a
ok The metaspace in which component in the jvm or it run outside the jvm?
v
Read the virtual machine specs of you want to know it in detail
1