转换运算符 - const 与非 const

发布于 2024-08-22 22:54:44 字数 208 浏览 4 评论 0原文

我有以下代码示例:

class Number 
{ 
  int i;
  public:
    Number(int i1): i(i1) {}
    operator int() const {return i;}
};

从转换运算符中删除 const 修饰符有何影响? 它会影响自动铸造吗?为什么?

I have this code sample:

class Number 
{ 
  int i;
  public:
    Number(int i1): i(i1) {}
    operator int() const {return i;}
};

What are the implications of removing the const modifier from the casting operator?
Does it affect auto casting, and why?

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

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

发布评论

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

评论(3

辞取 2024-08-29 22:54:44

如果转换运算符不是 const,则无法转换 const 对象:

const Number n(5);
int x = n; // error: cannot call non-const conversion operator

If the conversion operator is not const, you can't convert const objects:

const Number n(5);
int x = n; // error: cannot call non-const conversion operator
饮惑 2024-08-29 22:54:44

如果您有这样的函数:

void f(const Number& n)
{
  int n1 = n;
}

如果您删除强制转换运算符中的 const,它将开始给出编译错误。

If you have a function like this:

void f(const Number& n)
{
  int n1 = n;
}

It will start giving compilation error if you remove const in the casting operator.

残疾 2024-08-29 22:54:44

无论class Number实例是否为const,都可以调用const版本。如果该运算符被声明为非常量,则只能在非常量实体上调用它 - 当您尝试在无法调用它的地方隐式使用它时,您将收到编译错误。

The const version can be called regardless of whether the class Number instance is const or not. If the operator is declared non-const it can only be called on non-const entities - when you try to implicitly use it where it can't be called you'll get a compile error.

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