黑马程序员技术交流社区
标题:
关于this关键字的理解
[打印本页]
作者:
瑞雪雄起
时间:
2015-9-15 00:17
标题:
关于this关键字的理解
package com;
public class Test1 {
public static void main(String[] args) {
S s=new S();
s.spt();
}
}
class P
{
int x=0;
public void spt()
{
System.out.println(this.x);
}
}
class S extends P
{
int x=1;
}
this不是指向当前的对象吗,而当前对象不是S的对象吗,为什么不是输出1,而输出0
作者:
飞翔的小鸟
时间:
2015-9-15 00:31
因为属性是先调父类的。
作者:
飞翔的小鸟
时间:
2015-9-15 00:34
你参考下吧,如果回答不正确请谅解,我也是新手
作者:
18201432758
时间:
2015-9-15 08:03
不明白,不过可以帮你问问
作者:
freehello
时间:
2015-9-15 08:28
this指的是自身没问题,他是自身对象new出多个时,指向当前的自身
作者:
liufeibo
时间:
2015-9-15 08:50
因为this代表它所在函数所属对象的引用。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2