JVM의 메모리 구조에서 호출스택에 대해 알아보겠습니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 package sec02_exam; public class CallStackEx { public static void main(String[] args) { System.out.println("main()실행됨"); CallStackEx.firstMethod(); System.out.println("main()종료됨"); } public static void firstMethod() { System.out.println("firstMethod()실행됨"); CallStackEx.secondMethod(); System.out.println("..