更改 const 对象的数组成员的元素

发布于 2024-12-05 15:45:57 字数 493 浏览 0 评论 0原文

谁能向我解释为什么下面的代码有效:

#include <iostream>
class Vec 
{
    int *_vec;
    unsigned int _size;

public:
Vec (unsigned int size) : _vec (new int [size]), _size(size) {};
int & operator[] (const int & i) 
{
    return _vec[i];
}
int & operator[] (const int & i) const 
{
    return _vec[i];
}
};

int main () 
{
    const Vec v (3);
    v[1] = 15;
    std::cout << v[1] << std::endl;
}

它编译并运行得很好,即使我们正在更改 const 对象的内容。怎么样才算好呢?

Can anyone explain to me why the following code works:

#include <iostream>
class Vec 
{
    int *_vec;
    unsigned int _size;

public:
Vec (unsigned int size) : _vec (new int [size]), _size(size) {};
int & operator[] (const int & i) 
{
    return _vec[i];
}
int & operator[] (const int & i) const 
{
    return _vec[i];
}
};

int main () 
{
    const Vec v (3);
    v[1] = 15;
    std::cout << v[1] << std::endl;
}

It compiles and runs just fine, even though we're changing the contents of a const object. How is that okay?

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

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

发布评论

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

评论(1

じее 2024-12-12 15:45:57

常量是针对类成员的。您无法更改v._vec的值,但更改v._vec指向的内存内容没有问题。

The constness is with regards to the members of the class. You cannot change the value of v._vec, but there's no problem changing the content of the memory that v._vec points to.

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