- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的家庭作业一直有问题,关于创建多项式类并重载一些运算符以根据类工作。我已经完成了大部分工作,但我的析构函数或函数似乎有问题。
问题是,根据我的调试(如果我做对了,我想我做到了),当与我的复制构造函数一起使用时,我的 + 运算符函数 get 的返回值被破坏了两次,如下所示:
//polynomials p1 and p2 are declared and given values beforehand
Polynomial p5=Polynomial();
p5=p1+p2;
这会导致堆损坏错误。
这是我的标题代码:
#ifndef POLYNOMIAL_H_
#define POLYNOMIAL_H_
#include <iostream>
using namespace std;
class Polynomial
{
public:
Polynomial();
Polynomial(int);
~Polynomial();
Polynomial(const Polynomial &);
int getOrder() const;
double getCoefficient(int) const;
void setOrder(int);
void setCoefficient(int,double);
const Polynomial &operator=(const Polynomial &);
const bool &operator==(const Polynomial &);
const double &operator()(double &);
const bool &operator!=(const Polynomial &);
friend Polynomial operator+(const Polynomial &poly1, const Polynomial &poly2);
friend Polynomial &operator+=(Polynomial &poly1,const Polynomial &poly2);
friend Polynomial operator-(const Polynomial &poly1, const Polynomial &poly2);
friend Polynomial &operator-=( Polynomial &poly1,const Polynomial &poly2);
friend Polynomial operator*(Polynomial poly1,double num);
private:
int order;
double *coefficient;
};
#endif
这是我的重载 + 函数,它不是很漂亮,但我的问题不是计算,而是内存。我在类中将其声明为友元函数,根据我的作业规则,我需要在 main.cpp 文件中将其作为自由函数而不是成员函数来实现。
Polynomial operator+(const Polynomial &poly1, const Polynomial &poly2) //the overloaded +operator. makes the order of the result the bigger order and adds the coefficients for all the orders. returns the result.
{
Polynomial result;
if(poly1.order >= poly2.order)
{
result.setOrder(poly1.order);
for(int i=poly1.order;i>poly2.order;i--)
{
result.setCoefficient(poly1.order-i, poly1.coefficient[poly1.order-i]);
}
for (int i =poly2.getOrder(); i>=0;i--)
{
result.setCoefficient(poly1.order-i,poly1.coefficient[poly1.order-i]+poly2.coefficient[poly2.order-i]);
}
}
else
{
result.setOrder(poly2.order);
for(int i=poly2.order;i>poly1.order;i--)
{
result.setCoefficient(poly2.order-i, poly2.coefficient[poly2.order-i]);
}
for (int i =poly1.order; i>=0;i--)
{
result.setCoefficient(poly2.order-i,poly1.coefficient[poly1.order-i]+poly2.coefficient[poly2.order-i]);
}
}
return result;
}
我们还需要重载 = 运算符,如果需要,这里就是该函数。
const Polynomial &Polynomial::operator=(const Polynomial &poly)
{
if(this!=&poly)
{
if(order==poly.order)
{
for(int i=0;i<=order;i++)
{
coefficient[i]=poly.coefficient[i];
}
}
else
{
coefficient=new double[poly.order];
order=poly.order;
for(int i=0;i<=order;i++)
{
coefficient[i]=poly.coefficient[i];
}
}
}
return *this;
}
请记住,我真的是编码和 C++ 的初学者,非常感谢您提供的任何帮助。
编辑:添加深拷贝构造函数。
Polynomial::Polynomial(const Polynomial ©) //deep copy constructor
{
order=copy.order;
coefficient=new double[copy.order];
for (int i=0;i<=order;i++)
{
coefficient[i]=copy.coefficient[i];
}
}
最佳答案
您为 poly.order
double 分配内存,但在您的 for 循环中,最后一个索引将是 poly.order
而它应该是 poly.order-1
将 <= 更改为 < 将解决该问题。
coefficient=new double[poly.order];//This is memory leak previous coefficient needs to be deleted
order=poly.order;
for(int i=0;i<=order;i++)//<= will lead to overflow and heap corruption
{
coefficient[i]=poly.coefficient[i];
}
关于c++ - 如何防止局部变量被破坏两次?堆损坏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16104447/
有人可以解释一下为什么我得到: "use of unassigned local variable number_of_column" for: if (i f.LastWriteTime).Fir
我正在尝试为查询定义和初始化 MySQL 变量。 我有以下几点: declare @countTotal int; SET @countTotal = select COUNT(*) from nG
局部变量由小写字母或下划线(_)开头.局部变量不像全局和实变量一样在初始化前含nil值. ruby>$foo nil ruby>@foo nil ruby>foo ER
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
当我单击 Login 类上的注册按钮时,出现 nullpointerException,它给出了该错误。我尝试修改本地和全局变量,但似乎没有任何方法可以修复该错误,我可能在 onClickListen
我之前看过一些关于此的帖子,但我一直无法找到有关 actionListeners 的帖子。我正在尝试使用 JButton 数组创建井字棋。如果可能的话,如何在使用 for 循环临时变量的同时向它们添加
我试图找出一种将 getView() 方法中的位置变量传递给内部类的方法。但是,这不能是最终变量,因为 ListView 中的每个项目都会调用 getView() ,因此它会发生变化。有没有办法访问该
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve th
这对你们中的某些人来说似乎微不足道,但我对下面的这两个示例感到困惑。 int[] numbers = new int[] { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; int i
这个问题在这里已经有了答案: How do JavaScript closures work? (86 个答案) 关闭 7 年前。 所以我正在复习我的 vanilla Javascript,专门用于
我正在将mockito与spring(java 1.8)一起使用,并且我尝试在我的Answer对象中使用局部变量: public IProductDTO productForMock = null;
是否可以在java中为静态方法注入(inject)局部变量,比如 @Inject public void someMethod() { @MyInjectQualifier MyObjectC
我有一个函数,每 2 秒被重复调用一次,每次从屏幕顶部带来一个具有随机纹理的球。我希望能够在 touchesBegan 中使用这个球,但我不能,因为它是一个局部变量。我试过将它设为全局变量,但这给了我
这是(我假设)一个基本问题,但我似乎无法弄清楚。 给定以下代码: from src.Globals import * import pygame # Used to manage how fast t
这就是我在循环中引用全局变量的方法。 _.forEach(myTableName.detailsObjects, function (o, key) { if
我已经创建了一些代码: import numpy as np Length=(2.7)*10**-3 Nx=4 x = np.linspace(0, Length, Nx+1) # mes
如何获取局部变量? 我有这个代码 if (ctrl is Control) { Control c = (Control)ctrl; foreach (object innerCtrl
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Difference between class variables and class instance
我正在学习 Python 3,我有一个关于 Python 中面向对象编程的非常基本的问题。这是我的代码。 class pet: number_of_legs = 0 def count
我有以下代码块: class Student{ int age; //instance variable String name; //instance varia
我是一名优秀的程序员,十分优秀!