C++可变关键字如何影响容器的性能?

发布于 2024-12-12 09:06:03 字数 46 浏览 1 评论 0原文

我想知道可变如何影响容器(地图、矢量、列表……)。除此之外,我还需要注意什么?

I want to know how mutable affects a container (map, vector, list, ...). In addition, what do I have to bear in mind?

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

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

发布评论

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

评论(1

苯莒 2024-12-19 09:06:05

mutableconst 一样,只是编译时的事情。它只允许您在常量上下文中修改该变量。在运行时,无论您是否声明容器可变都没有区别。

class Foo{
  mutable int i;

public:
  void foo() const{
    // constant context, but you can modify `i`
    i = 5;
  }
};

mutable, like const, is just a compile-time thing. It just allows you to modify that variable in a constant context. At runtime, there is no difference whether you declared the container mutable or not.

class Foo{
  mutable int i;

public:
  void foo() const{
    // constant context, but you can modify `i`
    i = 5;
  }
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文