复制构造函数和赋值运算符都被调用

发布于 2024-12-17 07:43:37 字数 444 浏览 0 评论 0原文

我有以下程序片段:

Polynomial Polynomial:: add(const Polynomial b)
{
    Polynomial c;
    c.setRoot(internalAdd(root, c.root));
    c.setRoot(internalAdd(b.root, c.root));
    return c;
}

c = (a.add(b));

据我了解,这段代码假设将 a 和 b 加在一起,然后通过调用复制构造函数将所得多项式分配给 c。

但是,当我实际测试它时,

  • c 立即调用复制构造函数并尝试复制 b,
  • 然后 a 和 b 添加,
  • 然后 c 尝试通过赋值运算符获取结果多项式,
  • 然后程序崩溃,

我可以做什么来解决这个问题?

I have the following program snippet:

Polynomial Polynomial:: add(const Polynomial b)
{
    Polynomial c;
    c.setRoot(internalAdd(root, c.root));
    c.setRoot(internalAdd(b.root, c.root));
    return c;
}

c = (a.add(b));

to my understanding, this code is suppose to add a and b together, then assign the resulting polynomial to c by calling the copy constructor.

however, when I actually test it,

  • c calls the copy constructor right away and tries to copy b,
  • then a and b add
  • then c tries to get the resulting polynomial via assignment operator
  • then the program crashes

what can i do to fix this?

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

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

发布评论

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

评论(1

怀里藏娇 2024-12-24 07:43:37
Polynomial Polynomial::add(const Polynomial& b)
                                           ^

如果您不想复制参数,请将其作为引用传递,如上所述。

这可能无法修复您的崩溃 - 如果没有更多代码(以及您这边的一些调试来查明它),则无法判断导致崩溃的原因,但它将消除复制构造多项式参数的需要。

Polynomial Polynomial::add(const Polynomial& b)
                                           ^

If you don't want the argument to be copied, pass it in as a reference as above.

This probably won't fix your crash - no way to tell what is causing that without more of your code (and some debugging on your side to pinpoint it), but it will remove the need for copy-constructing the Polynomial argument.

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