... object’s destructor is called.
Using const and Non-const Member Functions
The program of Fig. 9.17 uses class Time from Figs. 9.5–9.6, but removes const from function toStandardString’s prototype and definition so that we can show a compilation error. We create two Time objects—non-const object wakeUp (line 6) and const object noon (line 7). The program attempts to invoke non-const member functions setHour (line 11) and toStandardString (line 15) on the const object noon. In each case, the compiler generates an error message. The program also illustrates the three other member-function-call combinations on objects—a non-const member function on a non-const object (line 10), a const member function on a non-const object (line 12) and a const member function ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access