复制构造函数和赋值运算符都被调用
我有以下程序片段:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不想复制参数,请将其作为引用传递,如上所述。
这可能无法修复您的崩溃 - 如果没有更多代码(以及您这边的一些调试来查明它),则无法判断导致崩溃的原因,但它将消除复制构造多项式参数的需要。
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.