This this 는 생성된 인스턴스의 메모리 주소를 가진다. public void setYear(int year) { this.year = year // this.year = 인스턴스의 변수, year = 매개 값 } public static void main(String args[]) { BirthDay day = new BirthDay(); day.setYear(2000); } 위와 같은 코드가 실행되면 메인 함수의 args와 day가 스택 메모리를 차지하게 되며 BirthDay 객체의 인스턴스인 day가 힙 메모리에 올라가게 된다. 다음으로 setYear() 메서드가 스택에 올라가게되고 setYear 메서드의 this.year은 힙 메모리에 적재된 BirthDay 인스턴스의 멤버변수를 가리킨다. ..