기본형 래퍼 클래스
byte Byte
short Short
int Integer
long Long
float Float
double Double
char Character
boolean Boolean

✅ 기본형 vs. 래퍼 클래스 차이점

int a = 10;  // 기본형 (null 불가능)
Integer b = null; // 래퍼 클래스 (null 가능)