继承带参数的基类构造函数

发布于 2025-01-11 07:11:27 字数 424 浏览 0 评论 0原文

简单代码:

class foo
{
    private int a;
    private int b;

    public foo(int x, int y)
    {
        a = x;
        b = y;
    }
}

class bar : foo
{
    private int c;
    public bar(int a, int b) => c = a * b;
}

Visual Studio 抱怨 bar 构造函数:

错误 CS7036 没有给出与 foo.foo(int, int) 所需的形式参数 x 相对应的参数。

什么?

Simple code:

class foo
{
    private int a;
    private int b;

    public foo(int x, int y)
    {
        a = x;
        b = y;
    }
}

class bar : foo
{
    private int c;
    public bar(int a, int b) => c = a * b;
}

Visual Studio complains about the bar constructor:

Error CS7036 There is no argument given that corresponds to the required formal parameter x of foo.foo(int, int).

What?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

惯饮孤独 2025-01-18 07:11:27

问题是基类 foo 没有无参数构造函数。因此,您必须使用派生类构造函数的参数调用基类的构造函数:

public bar(int a, int b) : base(a, b)
{
    c = a * b;
}

The problem is that the base class foo has no parameterless constructor. So you must call constructor of the base class with parameters from constructor of the derived class:

public bar(int a, int b) : base(a, b)
{
    c = a * b;
}
你另情深 2025-01-18 07:11:27

我可能是错的,但我相信既然你是从 foo 继承的,你必须调用一个基本构造函数。由于您显式地将 foo 构造函数定义为 require (int, int) ,现在您需要将其传递到链上。

public bar(int a, int b) : base(a, b)
{
     c = a * b;
}

这将首先初始化 foo 的变量,然后您可以在 bar 中使用它们。另外,为了避免混淆,我建议不要将参数命名为与实例变量完全相同。尝试使用 p_a 或其他东西,这样您就不会意外地处理错误的变量。

I could be wrong, but I believe since you are inheriting from foo, you have to call a base constructor. Since you explicitly defined the foo constructor to require (int, int) now you need to pass that up the chain.

public bar(int a, int b) : base(a, b)
{
     c = a * b;
}

This will initialize foo's variables first and then you can use them in bar. Also, to avoid confusion I would recommend not naming parameters the exact same as the instance variables. Try p_a or something instead, so you won't accidentally be handling the wrong variable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文