java this 关键字

来源:互联网 发布:淘宝充值平台人多吗 编辑:程序博客网 时间:2024/06/06 07:00
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;

}

}

0 0
原创粉丝点击