jvm
-
JVM Memory AreaJAVA 2023. 9. 8. 16:46
JVM Architecture Class Loader JVM 내로 .class 파일들을 Load 하여 Loading된 클래스들을 Runtime Data Area에 배치한다. JVM Memory Runtime Data Area 라고도 하며 JVM이 OS에서 할당 받은 메모리 공간이다 Execution Engine Runtime Data Area에 할당됭 ByteCode 를 실행하는 역할을 한다. Interpreter, JIT compiler, Garbage Collector 로 구성되어있다. Native Method Libraries 실행에 필요한 C,C++로 이루어진 Native Libraries 이다. Native Method Interface (JNI) JVM이 Native Method Librari..