박싱(Boxing)과 언방식(Unboxing)
1. 박싱 : 기본자료형 -> Wrapper 클래스로 변환2. 언방싱 : Wrapper 클래스 -> 기본자료형 으로 변환 public static void main(String[] args) {int n1 = 10;int n2; Integer num1;Integer num2 = new Integer(20); num1 = n1; // 오토 박싱 : 스택영역의 값을 힙 영역에 객체를 생성해서 넣음n2 = num2; // 오토 언박싱 : 힙 영역에서 값을 꺼내 스택영역으로 복사함 System.out.println(n1 + ", " + num1);System.out.println(n2 + ", " + num2); }
java/javascript
2014. 4. 2. 11:28
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- firewalld
- 리눅스 용량
- uriencode 괄호
- linux port open
- %28
- couchbase index
- centos7 port open
- encode 공백
- log
- crontab
- uriencode %20
- couchbase 인덱스
- 리눅스 port
- linux du -h
- 카우치베이스 인덱스
- linux du
- encode 더하기
- uriencode 더하기
- 카우치베이스 INDEX
- uriencode %28
- 리눅스 port 열기
- uriencode %29
- uriencode 공백
- pig tool
- centos port open
- du -h
- 쿼리
- du depth
- %29
- linux port
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함