当前位置: 技术问答>java相关
this关键字如何使用?
来源: 互联网 发布时间:2015-03-15
本文导语: 请各位不吝赐教!多举几个例子... | this关键字指当前类本身如: class typt { int i; void typt() { this.i=1; } } | this可以使用this关键字所在类的所有方法。 | this指所在类...
请各位不吝赐教!多举几个例子...
|
this关键字指当前类本身如:
class typt
{
int i;
void typt()
{
this.i=1;
}
}
class typt
{
int i;
void typt()
{
this.i=1;
}
}
|
this可以使用this关键字所在类的所有方法。
|
this指所在类呀。。
|
this关键字指对象本身,比如在方法体内void method(int i){this.i = i}就是将对象变量的值变为局部变量的值。在构造器内使用this是引用另一个构造器