'&' 是什么意思?在类的一元运算符中意味着什么?

发布于 2024-09-14 23:46:56 字数 225 浏览 4 评论 0原文

class CDate
{
  // some declarations
  public: 
    CDate& operator ++ ()
    {
      // increment function;     
      return *this; 
    }
};

是否有“&”是指正在返回的引用吗?

谢谢

规格C

class CDate
{
  // some declarations
  public: 
    CDate& operator ++ ()
    {
      // increment function;     
      return *this; 
    }
};

Does the '&' mean a reference that is being a return?

Thanks

SpecC

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

怎樣才叫好 2024-09-21 23:46:56

是的,你回答了你自己的问题。 CDate & 只是意味着该运算符返回对 CDate 对象的引用。它没有特殊含义,因为它是一个运算符,在任何其他函数中含义相同。

Yes, you answered your own question. CDate & simply means that the operator returns a reference to a CDate object. It has no special meaning because it's an operator, it means the same in any other function.

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