gpt4 book ai didi

java - 在 Java 中使用 This

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:44:36 26 4
gpt4 key购买 nike

增量方法调用在以下代码中是如何工作的:

public class Leaf {

int i = 0;
Leaf increment(){
i++;
return this;
}
void print(){
System.out.println("i = "+ i);
}
public static void main(String args[]){
Leaf x = new Leaf();
x.increment().increment().increment().print();
}
}

最佳答案

这是 method chaining 的一个例子.

通过返回this,可以在链中对原始对象实例的实例方法进行后续调用。

每次调用 increment() 都会将 i 的值增加 1,因为调用是作用于原始对象实例。

最后,在原始对象实例上调用print(),输出i的值。

关于java - 在 Java 中使用 This,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29859057/

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