首页 > 后端开发 > C++ > 对于 C 中的非类类型,为什么 `const int operator[](const int index) const` 优于 `int operator[](const int index) const` ?

对于 C 中的非类类型,为什么 `const int operator[](const int index) const` 优于 `int operator[](const int index) const` ?

DDD
发布: 2024-10-30 13:26:35
原创
611 人浏览过

Why is `const int operator[](const int index) const` preferred over `int operator[](const int index) const` for non-class types in C  ?

非类类型返回 Const 的意义

问题:

在 C 语言中,为什么我们需要使用 const int operator[](const int index) const 而不是 int operator[](const int index) const?

答案:

对于非类类型,返回类型上的顶级 const 限定符将被忽略。这意味着

int foo() {}
登录后复制

const int foo() {}
登录后复制

的返回类型都被解释为 int。但是,当返回引用时,const 变为非顶级并产生显着差异:

int& operator[](int index);
登录后复制

int const& operator[](int index) const;
登录后复制

是不同的。

类似,对于类类型的返回值,返回 T const 可以防止调用者对返回值调用非常量函数:

class Test {
public:
    void f();
    void g() const;
};

Test ff();
Test const gg();

ff().f();             //  legal
ff().g();             //  legal
gg().f();             //  illegal
gg().g();             //  legal
登录后复制

以上是对于 C 中的非类类型,为什么 `const int operator[](const int index) const` 优于 `int operator[](const int index) const` ?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板