C++ 「这个」和运算符重载

发布于 2024-08-18 09:28:57 字数 577 浏览 1 评论 0原文

我想知道如何将运算符与“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

小鸟爱天空丶 2024-08-25 09:28:57

任何一个:
this->operator()(i,j)(*this)(i,j)

Either:
this->operator()(i,j) or (*this)(i,j)

撩动你心 2024-08-25 09:28:57

只要做

(*this)(i,j);

Just do

(*this)(i,j);
小霸王臭丫头 2024-08-25 09:28:57

我也经常会这样做:

grd& This(*this);
This(i,j);

它和上面的例子一样,但是它去掉了额外的指针表示法,可以让代码看起来更干净。

I also often will do things like this:

grd& This(*this);
This(i,j);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文