Java의 자료 유형(primitive, reference)
프로그래밍/JAVA 2009. 2. 12. 02:44 |자바에서 제공하는 자료 유형은 크게 두가지로 나눌 수 있는데 기본 자료 유형(primitive data type)과 참조 자료 유형(reference data type)으로 나눌 수 있다. 자바에서 제공되는 유형은 모두 11가지 이다.
기본 자료 유형 : byte, short, int, long, float, double, boolean, char
그림파일 다운로드 : 20090212_datatype.jpg
기본 자료 유형 : byte, short, int, long, float, double, boolean, char
참조 자료 유형 : 인터페이스(interface), 클래스(class), 배열(array)