我正在尝试为 Matrix 程序重载“+”运算符。这是我的代码,对我来说看起来不错。但是当我在我的主函数中添加两个矩阵时,什么也没有发生。有人可以帮忙吗?谢谢 :)
顺便提一句:
- 程序编译并运行得很好,直到它应该添加到矩阵中。
- 我认为在我的 operator+() 函数的实现中存在问题,因为我已将代码复制到 add(Mtrx,Mtrx) 函数中进行测试,但它也不起作用。
//Mtrx.h
#ifndef MTRX_H_
#define MTRX_H_
#include <iostream>
#include <string>
using namespace std;
using std::ostream;
class Mtrx {
int lines,cols;
float **p;
public:
Mtrx();
Mtrx(int,int);
int getLines();
int getCols();
float getElement(int,int);
void setLines(int);
void setCols(int);
void setElement(int,int,float);
Mtrx operator+(Mtrx&);
~Mtrx();
};
ostream& operator<<(ostream& os, Mtrx& m);
#endif /* MTRX_H_ */
//mtrx.cpp
//...
//...
Mtrx::~Mtrx(){
delete p;
p = NULL;
}
Mtrx Mtrx::operator+(Mtrx& m){
if(this->getLines() == m.getLines() && this->getCols() == m.getCols()){
Mtrx res(getLines(),getCols());
for (int i = 1; i <= this->getLines(); i++){
for(int j = 1; j <= this->getCols(); j++){
res.setElement(i,j,(this->getElement(i,j)+m.getElement(i,j)));
}
}
return res;
}