Mutable
This lets you modify a class member variable inside a const member
function or on a const object
const method asks compiler that it will not change any part of the
object. If we mark a variable as mutable, we tell the compiler that this
specific data member can be changed inside const function/object
|
Mutable variable can be changed inside const Function
|