기본자료형
int a = 10;
참조 자료형
Calculator calc = new Calculator();
예외
String(문자열)은 예외이다.
String book = "Hello World";
String book = new String("Hello World");
// Both are ok.
정수형 : byte, short, int, long, char
public void checkOtherTypes(){
short shortMax=32767;//2bytes
int intMax=2147483647;//4bytes
long longMax=2324444132L;//8bytes
소수형: float, double
기타 : boolean