클래스(class)
- 클래스에 정의한 변수들을 멤버 변수, 필드라고 한다.
- 멤버 변수(Member Variable) : 클래스 영역에서 선언된 변수
- 필드(Field) : 데이터 항목을 가리키는 용어(데이터베이스, 엑셀 등에서 각각의 항목을 지칭)
public class Student {
String name; // 멤버 변수, 필드
String grade; // 멤버 변수, 필드
}
인스턴스 생성
Student student; // 1. 변수 선언
student = new Student(); // 2. 인스턴스 생성
student = x001 // 3. 참조값 보관및 반환