java this 关键字

本文详细介绍了Java中this关键字的用途及应用场景,包括返回当前对象引用、构造方法间的调用及解决变量命名冲突等问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

java中为了解决变量的命名冲突和不确定性问题,引入了this关键字。this代表当前类的实例,它经常出现在方法和构造方法中,具体使用情况分为以下三种:

(1)返回调用当前方法的对象的引用

public class Leaf{

private int i = 0;

public Leaf increment(){

i++;

return this;

}

public void print(){

System.out.println("i="+i);

}

public static void main(String[] args){

Leaf l = new Leaf();

l.increment().increment().increment().print();

Leaf x = new Leaf();

x.increment().increment().print();

}

}

(2)在类的构造方法中调用类的其他构造方法

public class Person{

private String name;

private int age;

private String sex;

public Person(){

sex = "male";

}

public Person(String _name){

this();

name = _name;

}

public Person(String _name,int _age){

this(_name);

age = _age;

}

}


(3)在方法参数与成员变量相同时,用于区分参数名和成员变量名

public class Person{

private String name;

private int age;

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public int getAge() {

return age;

}

public void setAge(int age) {

this.age = age;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值