- Constructor(생성자) -class를 생성할 때 사용 되는 메서드class에서 명시하지 않아도 자동 삽입리턴 타입이 없는 메서드예>class Test{ //생성자의 예 1 Test(){} //생성자의 예 2 Test(int count){ } }- class -객체들의 공통적인 부분을 묶은 것데이터 및 메서드(기능)을 가지고 있다.예>class Test{ //멤버변수 private int k; private String p; //생성자 Test(){ } //메서드 public void print(){ System.out.println("Test"); } } - Data type -1. Primitive typeint, float, double, char, boolean, shot, long 등 ..