자바의 기본 데이터 타입
byte(1), short(2), char(2), int(4), long(8), float(4), double(8), boolean(1)
상수형
3.45 : 명시하지 않으면 double형 상수
3.45f
3.45d
정수형
345 : 명시하지 않으면 int형 상수
100L : long형 상수
----------------------------------------------------------------
Person.java
public class Person {
public int age;
public float height;
public float weight;
} // end of Person class
c:\>javac Person.java ==> Person.class 생성
***************************
Person brother;
brother = new Person();
============================
Person brother = new Person();
brother.age = 20;
brother.height = 170.0F;
borther.weight = 67.5F;