듣고 있는 강의 - 김영한의 실전 자바 기본편 this this 는 인스턴스 자신을 가리킨다매개변수의 이름과 멤버 변수의 이름이 같은 경우 this 를 사용해서 둘을 명확하게 구분해야 한다 this 의 생략 변수를 찾을 때 가까운 지역변수를 먼저 찾고, 없으면 그 다음으로 멤버 변수를 찾는다,멤버 변수도 없으면 오류가 발생한다package construct;public class MemberThis { String nameField; void initMember (String nameParamenter) { nameField = nameParamenter; // this 생략되어 있음 // this.nameField = nameParamenter; // 와 같..