首页 > 后端开发 > C++ > 正文

为什么返回对象时 `const int operator[](const int index) const` 优于 `int operator[](const int index) const`?

Susan Sarandon
发布: 2024-10-31 19:54:02
原创
454 人浏览过

Why is `const int operator[](const int index) const` preferred over `int operator[](const int index) const` when returning objects?

const 对象作为返回值:超越琐碎

虽然人们广泛接受尽可能在返回类型中使用 const,但问题是为什么 const int 运算符[ ](const int index) const 优于 int 运算符[](const int index) const。为了深入研究这一点,我们首先探讨一下返回类型中 const 的微妙之处。

正如“Effective C”第 03 条中提到的,非类返回类型上的顶级 const 限定符确实会被忽略。尽管编写了 int const foo();,但返回类型仍然是 int。但是,引用返回类型的情况并非如此。 int&operator[](int index);的区别和 int const& 运算符[](int index) const;至关重要。

返回类类型时,const 限定符起着重要作用。如果返回 T const,则调用者将被限制在返回的对象上调用非常量成员函数。考虑以下示例:

<code class="cpp">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</code>
登录后复制

在这种情况下,附加到 gg() 的 const 限定符限制调用者访问非 const 成员函数,例如 f(),确保返回对象的完整性

因此,当返回 const 对象时,返回类型上的 const 限定符的用途超出了非引用的简单情况返回类型。它确保调用者以一致的方式与返回的对象交互,根据类设计的意图保留其内部状态。

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

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!