Question: 11.4.2: Basic polymorphism. Write the PrintItem() function for the base class. Sample output for below program: Last name: Smith First and last name: Bill Jones
11.4.2: Basic polymorphism.
Write the PrintItem() function for the base class. Sample output for below program:
Last name: Smith First and last name: Bill Jones
Hint: Use the keyword virtual to make PrintItem() a virtual function.
Fill in where it says your solution goes here
Code:
#include
class BaseItem { public: void SetLastName(string providedName) { lastName = providedName; };
// FIXME: Define PrintItem() member function
/* Your solution goes here */
protected: string lastName; };
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
