public class Class1{
int abc = 1;
public void method1(){
int abc = 200;
System.out.println(abc);
// 메서드1 안에 있는 지역변수인 abc의 값 200이 출력 됨
System.out.println(this.abc);
// 클래스의 멤버 변수를 호출하고 싶은 경우에는 this.을 붙여줘야 함
}
}