+2 votes
in C Plus Plus by

What is the role of mutable storage class specifier?

1 Answer

0 votes
by

A constant class object’s member variable can be altered by declaring it using mutable storage class specifier. Applicable only for non-static and non-constant member variable of the class.

...