我正在努力解决操作员超载问题。在这种情况下,我拥有的 + 运算符和我尝试过的示例,任何帮助将不胜感激。
我收到一个错误,上面写着“'class Matrix'的使用无效我不确定如何解决这个问题如何将这两个 Matrix 对象添加在一起?
Matrix Matrix::operator+(const Matrix& rhs){
return Matrix(Matrix + rhs.Matrix());
}
Matrix::Matrix(int MM, int NN){
M = MM;
N = NN;
data = new double[M * N];
for ( int i =0; i < M; i++)
{
for (int j = 0; j < N; j++)
{
data[i* N+j] = (double) 1000 + i*N+j;
// cout << data[i*N+j] <<"\t";
}
//cout <<"\n";
}
cout << "Matrix Constructor... (code to be implemented here!!!)\n";}
谢谢