-> 기본자료형 (boolean, byte, short, int, long, char, float, double)
-> Wrapper 클래스(Boolean, Byte, Short, Integer, Long, Character, Float, Double)
int a1 = 10;
Integer a2 = new Integer (a1); // Boxing
Integer a3 = Integer.valueOf(a1); // Boxing
int b1 = 10;
Integer b2 = b1; // Auto Boxing
-> Wrapper 클래스(Boolean, Byte, Short, Integer, Long, Character, Float, Double)
-> 기본자료형 (boolean, byte, short, int, long, char, float, double)
Integer a = Integer.valueOf(20);
int a4 = a.intValue(); // UnBoxing
int a5 = Integer.valueOf(20); // Auto UnBoxing
my.day04.a.wrapper -> Main_wrapper