如果局部变量与实例变量同名,那么如何在局部变量的作用域内引用实例变量?

public class Sample
{
private int a=1; //实例变量

public void b()
{
int a=2; //局部变量
System.out.println("局部变量:a="+a);
System.out.println("实例变量:a="+this.a);//局部变量的作用域内引用实例变量:this.变量名
}
public static void main(String[] args)
{
new Sample().b();
}
}
posted @ 2015-03-15 15:41  锄,禾日当午  阅读(967)  评论(0编辑  收藏  举报