gpt4 book ai didi

java - 在 Java 中使用 this() 会创建对象的更多递归实例吗?

转载 作者:行者123 更新时间:2023-11-29 10:03:24 26 4
gpt4 key购买 nike

如果我有构造函数

public class Sample {


public static StackOverflowQuestion puzzled;
public static void main(String[] args) {

puzzled = new StackOverflowQuestion(4);
}
}

在我的程序的主要方法中

public class StackOverflowQuestion {

public StackOverflowQuestion(){
//does code
}

public StackOverflowQuestion(int a){
this();
}
}

这是通过构造函数 2 创建一个 StackOverflowQuestion 实例,然后通过构造函数 1 创建另一个 StackOverflowQuestion 实例,因此我现在有两个 StackOverflowQuestion 实例直接在彼此内部吗?

或者在这种情况下,constructor2 是否进行横向调整,然后通过 constructor1 创建一个 StackOverflowQuestion 实例?

最佳答案

我想你的意思是:

public class StackOverflowQuestion
{

public StackOverflowQuestion(){ // constructor
//does code
}

public StackOverflowQuestion(int a){ // another constructor
this();
}
}

然后这样调用它:

StackOverflowQuestion puzzled = new StackOverflowQuestion(4);

这只会创建一个对象,因为 new 只执行一次。调用 this() 将在不创建新对象的情况下执行另一个构造函数中的代码。该构造函数中的代码能够修改当前创建的实例。

关于java - 在 Java 中使用 this() 会创建对象的更多递归实例吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16186961/

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