Notice
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 |
Tags
- 재귀
- jquery 이벤트 처리
- java Collections.sort()
- 순열 재귀
- jquery 필터선택자
- 재귀함수
- jquery dom 계층 선택자
- char to str
- 서로소
- 알고리즘 그래프
- 후위표기
- 자바스크립트 이벤트처리
- 자바 조합 재귀
- 상속
- java lambda
- 조합 재귀
- 순열코드
- parseInt()
- str to char array
- 자바 재귀 조합
- 자바 순열 코드
- 자바스크립트 이벤트중지
- 자바
- 알고리즘
- Interface
- java 내부 클래스
- jquery 속성선택자
- inner class
- Java
- 자바입출력
Archives
- Today
- Total
목록Java memory (1)
유블로그
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/uFWeO/btqF1SgQB8y/p3awQPLtrw556XcwD77aD1/img.png)
Method Area(class area) : 클래스 자체의 정보를 담는 곳. static 변수/함수, method 관련 정보 등이 들어간다. Heap : 참조형 변수들, 가변적 데이터들이 활용하는 공간이다. Stack : method call 단위로 만들어지고 사라진다. ex1) public static void main(String[] args) { int [][] arr = new int[3][3]; } ex2) public class Singer { String name; int age; String genre; Singer(){} public static void main(String[] args) { Singer s1 = new Singer(); Singer s2 = new Singer(); ..
Java
2020. 7. 25. 23:16