Wrapper class ArrayList nubmers = new ArrayList(); // Invalid ArrayList numbers = new ArrayList(); // Valid primitive type의 데이터를 객체로 취급해야 하는 경우가 있습니다. 이럴 경우 primitive type의 데이터를 객체로 포장해주어야 하는데 이때 사용하는 클래스를 Wrapper class라고 합니다. 기본형 타입의 래퍼 클래스는 java.lang 패키지에 포함되어있습니다. 기본타입 래퍼클래스 byte Byte short Short int Integer long Long float Float double Double char Character boolean Boolean Integert와 Characte..