반응형 Non-Static1 static vs non-static 개요 static 변수들이 어떻게 생성되고 어디에 저장되는지 알아보겠습니다. 또한 static의 장단점을 알아보겠습니다. 목차 static의 생성 과정과 저장 위치 static 장점 static 단점 non-static 특징 static의 생성 과정과 저장 위치 static은 JVM Runtime Data Area의 Method Area에 위치하며 Class Variable로 분류됩니다. class파일이 JVM에 의해 ClassLoader에 들어오면 Loading 이후에 Linking 과정 중 Prepare에서 static 변수에 메모리를 할당하고 초기값을 가집니다. Linking 이후 Initialization에서, 모든 static 변수들은 자신이 가지고 있는 해당 값이 할당됩니다. 이 공간이 Met.. 2020. 9. 21. 이전 1 다음 반응형