<<< | Index | >>> |
So, what does keyword mutable mean ?
The mutable keyword can only be applied to non-static and non-const data members of a class. If a data member is declared mutable, then it is legal to assign a value to this data member from a const member function.
<<< | Index | >>> |