Matrixプログラムの「+」演算子をオーバーロードしようとしています。これが私のコードです、それは私には大丈夫に見えます。しかし、メイン関数に2つの行列を追加しても、何も起こりません。誰かが助けることができますか?ありがとう :)
ところで:
-プログラムは、Matricesに追加する必要がある時点まで、正常にコンパイルおよび実行されます。
-コードをadd(Mtrx、Mtrx)関数にコピーしてテストしましたが、どちらも機能しなかったため、operator +()-関数の実装に問題があると思います。
//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;
}