Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Break
- CONTINUE
- 한글깨짐
- POST방식
- 김영한
- webserver #WAS #ServerApp
- Forwarding
- 다형성 #부모타입 #자식타입
- Spring MVC
- GET방식
- xml
- 피그마
- 화면정의서
- Servlet
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194709&category=questiondetail&tab=community&q=1314387
- while문
- sendRedirect
- 매핑 #
- Request
- WAS
- Dispatcher
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194711
- 요구사항정의서
- JSON형식의 response
- 톰캣
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194690
Archives
- Today
- Total
Step it up now
stack 구조 본문
public class JavaMemoryMain1 {
public static void main(String[] args) {
System.out.println("main start"); //순서 1
method1(10); //2
System.out.println("main end");//8
}
static void method1(int m1){
System.out.println("method1 start"); //3
int cal = m1 *2;
method2(cal); //4
System.out.println("method1 end");//7
}
static void method2(int m2){
System.out.println("method2 start");//5
System.out.println("method2 end");//6
}
}
- 자바는 스택 영역을 사용해서 메서드 호출과 지역 변수(매개변수 포함)를 관리한다.
- 메서드를 계속 호출하면 스택 프레임이 계속 쌓인다.
- 지역 변수(매개변수 포함)는 스택 영역에서 관리한다.
- 스택 프레임이 종료되면 지역 변수도 함께 제거된다.
- 스택 프레임이 모두 제거되면 프로그램도 종료된다
'개인공부 > java' 카테고리의 다른 글
상속 super( ); (0) | 2024.07.08 |
---|---|
상속시 인스턴스 생성 (1) | 2024.07.08 |
package (1) | 2024.06.05 |
생성자 (0) | 2024.06.03 |
기본형 vs 참조형 - 메서드 호출시 (0) | 2024.05.16 |