1,变量
如果子类中出现非私有的同名成员变量时,
子类要访问本类中的变量,用this。 this代表的是本类对象的引用。
子类要访问父类中的同名变量,用super。 super代表的是父类对象的引用。
class Fu
{
private int num = 4;
public void setNum(int num)
{
this.num =num;
}
public int getNum()
{
return this.num;
}
}
class Zi extends Fu
{
int num = 5;
void show()
{
System.out.println(this.num);
System.out.println(super.num);
}
}
class ExtendsDemo
{
public static void main(String[] args)
{
Zi z = new Zi();
z.show();
}
}