gpt4 book ai didi

c# - 如何在基类中声明构造函数,以便子类可以在不声明的情况下使用它们?

转载 作者:行者123 更新时间:2023-11-30 13:13:30 27 4
gpt4 key购买 nike

我希望子类使用其父类的构造函数。但似乎我总是需要在子类中再次定义它们才能使其工作,如下所示:

public SubClass(int x, int y) : base (x, y) {
//no code here
}

所以我想知道是我没有在父类中正确声明构造函数,还是根本没有直接的构造函数继承?

最佳答案

你没有做错什么。

在 C# 中,实例构造函数不会被继承,因此在继承类型上声明它们并链接到基构造函数是正确的方法。

来自规范 §1.6.7.1:

Unlike other members, instance constructors are not inherited, and a class has no instance constructors other than those actually declared in the class. If no instance constructor is supplied for a class, then an empty one with no parameters is automatically provided.

关于c# - 如何在基类中声明构造函数,以便子类可以在不声明的情况下使用它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8869503/

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