我一直在实现一个自定义模板矩阵类,我有一个功能,我需要一些帮助.我正在尝试重载operator =我使用我已经实现并正在工作的重载operator [].问题是,我不知道如何将’this’指针与operator []结合起来.
这是我正在尝试做的事情:
Matrix & operator+= (const Matrix & rhs)
{
if(this->numrows() != rhs.numrows() || this->numcols() != rhs.numrows())
{
cout << "ERR0R: Cannot add matrices of different dimensions." << endl;
return *this;
}
else
{
theType temp1, temp2, temp3;
for(int i = 0; i < this->numrows(); i++)
{
for(int j = 0; j < this->numcols(); j++)
{
temp1 = this->[i][j];
temp2 = rhs[i][j];
temp3 = temp1 + temp2;
this->[i][j] = temp3;
}
}
return *this;
}
}
无论我的错误/业余/冗余编码如何:P我主要关注的是如何使用’this’指针,就像我称之为“rhs [i] [j]”一样. (因为这个 – > [i] [j]或者这个.[i] [j]都没有工作)
我想也许它可以长期工作<<例如:this-> operator [](i)>>但我无法弄清楚如何将双括号纳入其中.或者也许完全有另一种选择.我希望我能很好地解释自己.我觉得答案很简单.我只是难过.任何帮助表示赞赏.
谢谢.
解决方法:
你可以写
(*this)[i][j]
或者,如果你想对它非常歪曲
this->operator[](i)[j];
或者更糟:
this->operator[](i).operator[](j); // :) happy debugging
并且不要使用无所畏惧这个词. Stewie Griffin said everyone who uses that term along with “all of the sudden” must be sent to a work camp