gpt4 book ai didi

java - 如何将构造函数从父类(super class)继承到子类

转载 作者:IT老高 更新时间:2023-10-28 20:51:18 26 4
gpt4 key购买 nike

如何将构造函数从父类(super class)继承到子类?

最佳答案

构造函数不是继承的,您必须在子类中创建一个新的、原型(prototype)相同的构造函数,该构造函数映射到其在父类(super class)中匹配的构造函数。

这是一个如何工作的示例:

class Foo {
Foo(String str) { }
}

class Bar extends Foo {
Bar(String str) {
// Here I am explicitly calling the superclass
// constructor - since constructors are not inherited
// you must chain them like this.
super(str);
}
}

关于java - 如何将构造函数从父类(super class)继承到子类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2319817/

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