gpt4 book ai didi

java - Java中 "this"运算符的使用

转载 作者:行者123 更新时间:2023-12-01 06:26:09 25 4
gpt4 key购买 nike

除了访问与局部变量同名的成员变量之外,this关键字还有其他用途吗

this.x = x

还有其他情况可以使用此关键字吗?

最佳答案

this 关键字的另一种用法是在构造函数链中,例如:

class Person {

private String name;
private int age;

public Person() {
//Invoking another constructor
this("John", 35);
}

public Person(String name, int age) {
this.name = name;
this.age = age;
}
}

关于java - Java中 "this"运算符的使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20779151/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com