반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Computer
- EJB
- 알고리즘
- 컴퓨터과학과
- 컴파일러
- ISBN:89-20-34523-6
- 방송통신대학교
- Java
- 백과사전
- 컴퓨터
- 인간과 교육
- 용어
- 법
- 영어
- Software
- 영화
- 프로그래밍언어
- 책
- Algorithms
- Programming
- architecture
- Book
- Database
- 교육
- OS
- 데이터베이스
- Compiler
- 운영체제
- 광고
Archives
- Today
- Total
Digital Intelligence
Wrapping a primitive 본문
반응형
Wrapping a primitive
Boolean
Character
Byte
Short
Integer
Long
Float
Double
wrapping a value
int i = 288
Integer iWrap = new Integer(i);
unwrapping a value
int unWrapped = iWrap.intValue();
Head First Java, 2nd Edition, p.287
Autoboxing
In Java 5.0, the conversion from primitive to wrapper object automatically.
public void doNumsNewWay() {
ArrayList<Integer> listOfNumbers = new ArrayList<Integer>();
listOfNumbers.add(3);
int num = listOfNumbers.get(0);
}
Head First Java, 2nd Edition, p.289
Wrappers have static utility methods
String s = "2";
int x = Integer.parseInt(s);
반응형
'B1:기초 Basement' 카테고리의 다른 글
이면우 교수의 월간조선 기고문 (0) | 2006.10.05 |
---|---|
객체 직렬화(Object Serialization) (0) | 2006.10.04 |
객체지향언어(Object Oriented Language) (0) | 2006.10.03 |
대규모 프로그래밍 (0) | 2006.10.03 |
XMLSpy Enterprise Edition (0) | 2006.10.02 |