gpt4 book ai didi

constructor - 从一个类中的另一个构造函数调用一个构造函数

转载 作者:行者123 更新时间:2023-12-01 11:32:21 25 4
gpt4 key购买 nike

我在网上遇到了以下问题。

如果我们从类中的另一个构造函数调用一个构造函数,会发生什么?

谁能给我一些提示?

最佳答案

在 java 中也可以使用 this 关键字。查看下面给出的示例。

public class A {

public A() {
//this("a");
System.out.println("inside default Constructor");
}

public A(String a){
this();
System.out.println("inside Constructor A");
}

}

这个概念称为构造函数链。如果它是 c#,我发现这说它是可能的 Is nesting constructors (or factory methods) good, or should each do all init work

关于constructor - 从一个类中的另一个构造函数调用一个构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31152922/

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