[자바/기본] Wrapper 클래스란? (Boxing, UnBoxing)
Wrapper 클래스란? 자바의 기본 자료형 (primitive type)을 감싸는 클래스 기본자료형 : boolean, char, byte, short, int, long, float, double Wrapper : Boolean, Char, Byte, Short, Integer, Long, Float, Double 앞에가 대문자로 시작하면 Wrapper구나~ 로 본인은 인식 String 처럼 Wrapper클래스는 immutable (불변성)을 가진다. String과 불변성에 대한 설명은 https://jk25.tistory.com/173 Wrapper Class 의 계층도 WHY Wrapper 클래스? 기본 자료형의 변수의 값을 가지는 객체를 생성해야할때 사용할 수 있다. EX) 자바의 메소드 혹은 ..