reference type

개발자의 삶/Java

[Java] 원시 타입(Primitive type), 참조 타입(Reference type), 래퍼클래스(Wrapper Class)

- Java의 자료형 자바의 자료형에는 원시 타입(Primitive type), 참조 타입(Reference type) 두가지 타입이 있다. 1. 원시타입 (Primitive type) Primitive type은 stack 메모리 공간에 값 자체가 저장되며 boolean, int, long, char 등이 있다. 2. 참조타입 (Reference type) Reference type은 heap 메모리 공간에 저장되며 해당 객체들의 주소를 stack 메모리 공간에 저장한다. 기본형 이외 대부분의 타입들을 말하며, 배열, 클래스 인터페이스 등이 있다. int a = 1; // stack 에 저장 Integer b = new Integer(); // heap에 저장하고 주소값을 참조 3. 래퍼 클래스 (Wr..

Kedric
'reference type' 태그의 글 목록