Wrapper Class1 [Java] 래퍼 클래스(Wrapper Class) 원시 타입(Primitive Type)과 참조 타입(Reference Type) 자바의 데이터 타입에는 원시 타입(Primitive Type)과 참조 타입(Reference Type)이 있다. 원시 타입은 정수, 실수, 문자, 논리 리터럴 등 실제 데이터 값을 저장하는 타입이다. 참조 타입은 기본 타입을 제외한 타입으로, 객체의 주소를 저장하여 객체를 참조하는 타입이다. 클래스와 인터페이스 등이 있다. 래퍼 클래스(Wrapper Class) 원시 타입 래퍼 클래스 byte Byte short Short int Integer long Long float Float double Double boolean Boolean char Character 래퍼 클래스(Wrapper Class)는원시 타입의 값을 감싸는.. 2022. 9. 6. 이전 1 다음