1. this가 하는 일 (1) 인스턴스 자신의 메모리를 가리킴public class Birthday { ... public void setYear(int year) { this.year = year; } public static void main(String[] args) { BirthDay day = new BirthDay(); day.setYear(2000); } ...} (2) 생성자에서 또 다른 생성자를 호출할 때 사용 - 클래스에서 생성자가 여러 개인 경우, this을 이용하여 생성자에서 다른 생성자 호출 가능public class Person { String name; int age; public Person(..