Question: Consider the following code fragment: class Animal { public: void Eats() { cout < < Eats food. < < endl; } }; class Lion

Consider the following code fragment: class Animal { public: void Eats() {

 

Consider the following code fragment: class Animal { public: void Eats() { cout < < "Eats food." < < endl; } }; class Lion public Animal { public: Lion() Animal(), m_name("Leo") {} Lion(string name): Animal(), m_name(name) {} void Eats() { cout < < m_name < < " eats meat." < < endl; } void Sleep() { cout < < "Ahh...a nice nap!" < < endl; } private: }; string m_name; a. Suppose leo is a Lion object. What syntax would I use to invoke the Eats () method on leo? b. Suppose lionPtr is a pointer to a Lion object. What syntax would I use to invoke the Sleep () method on the Lion object pointed to by lionPtr?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

In the given code fragment there are two classes Animal and Lio... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!