반응형
- 선수개념
자바의 자료형은 크게 기본 타입(primitive type)과 참조 타입(reference type)이 있다.
- Primitive type : char, int, float, double, boolean 등
- Reference type : class, interface 등
"Primitive type 을 Reference type 객체로 바꾸기 위해서 (포장해) 사용하는 클래스" 들을
' Wrapper class (래퍼 클래스) ' 라고 합니다.
|
반응형