C++0x 中的继承构造函数

发布于 2024-10-25 11:50:02 字数 628 浏览 2 评论 0原文

假设我有以下代码,我们期望成为下一个 C++ 标准:

int f(int x) 
{ 
  std::cout << x;
  return x * x; 
}

struct A
{
  A(int x) : m_x(x) {}
  int m_x;
};

struct B : A
{
  using A::A;
  B() : m_y(f(m_x)) {}
  int m_y;
};

int main()
{
  B(5);
}

这会调用 B 的默认构造函数并打印出 5 并设置 m_y = 25 吗?或者 B 的默认构造函数不会运行,并且 m_y 未初始化?

如果是后者,不调用 B 默认构造函数的理由是什么?很明显,A(int) B 只继承了 A 的初始化,而使 B 处于不确定状态。为什么 C++ 会选择未定义的行为而不是简单地调用 B() 的默认构造函数?它在很大程度上违背了继承构造函数功能的目的。

编辑:

也许应该允许这样做:

using A::A : m_y(...) { std::cout << "constructing..." << std::endl; ...; }

Lets say I have the following code in what we expect to become the next C++ standard:

int f(int x) 
{ 
  std::cout << x;
  return x * x; 
}

struct A
{
  A(int x) : m_x(x) {}
  int m_x;
};

struct B : A
{
  using A::A;
  B() : m_y(f(m_x)) {}
  int m_y;
};

int main()
{
  B(5);
}

Would this call the default constructor of B and print out 5 and set m_y = 25? Or will the default constructor of B not run, and leave m_y uninitialized?

And if the latter, what is the rationale behind not calling the B default constructor? It is quite clear that the A(int) B inherits only initialises A, and leaves B in an indeterminate state. Why would C++ choose undefined behaviour over simply calling the default constructor of B()? It largely defeats the purpose of the inheriting constructors feature.

Edit:

Perhaps this should be allowed:

using A::A : m_y(...) { std::cout << "constructing..." << std::endl; ...; }

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

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

发布评论

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

评论(1

只涨不跌 2024-11-01 11:50:02

using A::A; 在派生类中隐式声明 B(int)。就是这样。

程序的其余部分不应按您的预期工作。因为您使用 B(5) 调用 B(int),导致 m_y 未初始化。

请参阅 Bjarne Stroustrup 网站上的示例:

struct B1 {
    B1(int) { }
};

struct D1 : B1 {
    using B1::B1; // implicitly declares D1(int)
    int x;
};

void test()
{
    D1 d(6);    // Oops: d.x is not initialized
    D1 e;       // error: D1 has no default constructor
}

http://www2.research .att.com/~bs/C++0xFAQ.html#inheriting

来自同一链接的另一个示例:

struct D1 : B1 {
        using B1::B1;   // implicitly declares D1(int)
        int x{0};   // note: x is initialized
    };

    void test()
    {
        D1 d(6);    // d.x is zero
    }

using A::A; implicitly declares B(int) in the derived class. That is it.

The rest of your program should not work as you expect. Because you're invoking B(int) with B(5), and that leaves m_y uninitialized.

See this example from Bjarne Stroustrup's site:

struct B1 {
    B1(int) { }
};

struct D1 : B1 {
    using B1::B1; // implicitly declares D1(int)
    int x;
};

void test()
{
    D1 d(6);    // Oops: d.x is not initialized
    D1 e;       // error: D1 has no default constructor
}

http://www2.research.att.com/~bs/C++0xFAQ.html#inheriting

Another example from the same link:

struct D1 : B1 {
        using B1::B1;   // implicitly declares D1(int)
        int x{0};   // note: x is initialized
    };

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