📜  在 const 函数 C++ 代码示例中更新变量

📅  最后修改于: 2022-03-11 14:44:50.826000             🧑  作者: Mango

代码示例1
//declare x mutable
class A (){
   mutable int x;
public:
   void func () const {
      //change value of x here
   }
};