C++ 「这个」和运算符重载
我想知道如何将运算符与“this”一起使用。举个例子:
class grd : clm
{
inline int &operator()(int x, int y) { return g[x][y]; }
/* blah blah blah */
};
grd grd::crop(int cx1, int cy1, int cx2, int cy2)
{
grd ngrd(abs(cx1-cx2), abs(cy1-cy2));
int i, j;
//
for (i = cx1; i < cx2; i++)
{
for (j = cy1; j < cy2; j++)
{
if (i >= 0 && i < x && j >= 0 && j < y)
ngrd(i-cx1,j-cy2) = ?? // this->(i,j); ****
}
}
return ngrd;
}
谢谢!
I was wondering how can you use operators along with 'this'. To put an example:
class grd : clm
{
inline int &operator()(int x, int y) { return g[x][y]; }
/* blah blah blah */
};
grd grd::crop(int cx1, int cy1, int cx2, int cy2)
{
grd ngrd(abs(cx1-cx2), abs(cy1-cy2));
int i, j;
//
for (i = cx1; i < cx2; i++)
{
for (j = cy1; j < cy2; j++)
{
if (i >= 0 && i < x && j >= 0 && j < y)
ngrd(i-cx1,j-cy2) = ?? // this->(i,j); ****
}
}
return ngrd;
}
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
任何一个:
this->operator()(i,j)
或(*this)(i,j)
Either:
this->operator()(i,j)
or(*this)(i,j)
只要做
Just do
我也经常会这样做:
它和上面的例子一样,但是它去掉了额外的指针表示法,可以让代码看起来更干净。
I also often will do things like this:
It's just the same as the above examples, but it gets rid of the extra pointer notation and can make the code look cleaner.