gpt4 book ai didi

java - 如果基类具有带参数的构造函数,如何添加不带参数的构造函数

转载 作者:行者123 更新时间:2023-12-02 07:14:49 25 4
gpt4 key购买 nike

如何添加不带参数的构造函数,以防该类扩展具有参数化构造函数的其他类。

例如,

我有一个扩展 A 的 B 类。

Class A {
//Parameterized constructor
A(int a,int b) {
//some operation
}
}


Class B extends A {
//Constructor without paramaters
B() {
}
}

是否可以在扩展 A 类的同时在 B 类中创建一个空构造函数?

请告诉我详细信息。

谢谢,蒂内什

最佳答案

您应该为 A 的构造函数所需的参数计算出一些值。

class B extends A {
//Constructor without paramaters
B() {
super(0,0);
}
}

关于java - 如果基类具有带参数的构造函数,如何添加不带参数的构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15062039/

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