Question: [4] A. Write the member function to overload the auto-decrement operator. Use the standard -= operator to decrease the ZooAnimal object's weight by 1 (pound).
| [4] A. Write the member function to overload the auto-decrement operator. Use the standard -= operator to decrease the ZooAnimal object's weight by 1 (pound). class ZooAnimal { |
| private: char *name; int cageNumber; int weightDate; int weight; public: ... void operator-- (); ... }; |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
