[1] 기본형 타입 (Primitive Data Type)
(1) 정수형: byte(1byte), short(2), int (4), long(8)
(2) 실수형: float(4), double(8)
(3) 문자형: char(2byte)
(4) 부울형: boolean(1byte) true/false
[2] 참조형 타입 (Reference Data Type)
(1) 대표적인 타입: 클래스(Class), 배열(Array), 인터페이스(Interface), 문자열(String)
(2) 특징: 데이터가 저장된 메모리의 주소 값을 저장하는 변수이다.