자바 Wrapper 클래스 개념과 사용하는 이유

Wrapper 클래스

Wrapper클래스는 자바의 primitive type의 객체화 버전이다.

비교 Primitive Wrapper
1 byte Byte
2 short Short
3 int Integer
4 long Integer
5 float Integer
6 double Integer
7 char Character
8 boolean Boolean

Wrapper 클래스를 사용하는 이유?

프리미티브 타입을 사용할 수 없는 경우를 아래의 코드릍 통해 살펴보자.

int [] arr = new int[4];
ArrayList<int> list = new ArrayList<>() -----> Error

ArrayList<Integer> list = new ArrayList<>()

활용법

결론



Related Posts