About 6,630 results
Open links in new tab
  1. 深入理解C++中的mutable关键字-CSDN博客

    Jul 9, 2018 · 本文详细介绍了C++中mutable关键字的使用方法及其应用场景。 通过一个具体示例,展示了如何利用mutable关键字在const成员函数中修改那些与类状态无关的数据成员。

  2. C++知识分享:C++的mutable和volatile - 知乎

    C++中修饰数据可变的关键字有三个:const、volatile和mutable。 const比较好理解,表示其修饰的内容不可改变(至少编译期不可改变),而volatile和mutable恰好相反,指示数据总是可变的。 mutable …

  3. MUTABLE中文 (简体)翻译:剑桥词典 - Cambridge Dictionary

    While other aspects of an individual's social status may be less mutable, such as race or gender, all people grow old.

  4. mutable(英文单词)_百度百科

    基本特征 mutable作为正式用语,意为“易变的;可变的;反复无常的”(able or likely to change),常用来描述事物、性质或状况具有不稳定、可改变的特性。

  5. C++深入理解mutable和volatile关键字 - 傍风无意 - 博客园

    Jan 7, 2020 · 一、mutable关键字 mutable的中文意思是“可变的,易变的”,跟constant(既C++中的const)是反义词。 在C++中,mutable也是为了突破const的限制而设置的。 被mutable修饰的变 …

  6. C++中的mutable关键字 - 夜行过客 - 博客园

    Aug 31, 2018 · 在C++中, mutable 也是为了突破const的限制而设置的。 被 mutable 修饰的变量,将永远处于可变的状态,即使在一个const函数中。 我们知道,被const关键字修饰的函数的一个重要作用 …

  7. C++ mutable的用法(附带实例) - C语言中文网

    C++ mutable的用法(附带实例) 关键字 mutable 并不是在 C++ 11 中新引入的关键字,但是很少有 C++ 相关的资料中提及这个关键字。 mutable 用于修饰类的非静态成员变量。 它的作用是允许在一个被 …

  8. MUTABLE Definition & Meaning - Merriam-Webster

    May 9, 2026 · The meaning of MUTABLE is prone to change : inconstant. How to use mutable in a sentence.

  9. mutable - 搜索 词典

    必应词典为您提供mutable的释义,美 [ˈmjutəb (ə)l],英 [ˈmjuːtəb (ə)l],adj. 可变的;会变的; 网络释义: 易变的;性情不定的;变动;

  10. C++干货系列——const真理大讨论(二)mutable - 知乎

    mutable 是在C++中被讨论相对较少的一个关键字。 但是它却十分有用,而且在你想写出 const 正确的代码时几乎不可避免会用到它。 我们的核心观点在于,在外部表现为 const 的变量在内部转变为非 …