Java의 기본 타입에 해당하는 데이터를 객체로 포장해주는 클래스
Collection 프레임워크를 사용할 때 Generic을 사용하기 위해 Wrapper Class로 변환해야 함
기본 타입 : byte, short, int, long, float, double, char, boolean
기본 type -> Wrapper Class
Integer num = new Integer(6);
Character ch = 'A'; //오토박싱
Wrapper Class -> 기본 type
int n = num.intValue();
char c = ch; //오토언박싱