Question: Using standard C++ , please design an abstract class called Employee whose members are as given below (make them protected): Data members: char *name long

Using standard C++, please design an abstract class called Employee whose members are as given below (make them protected):

Data members:

char *name

long int ID

Two constructors:

A Default constructor // intitialize data memebrs to the default values

and a copy constructor

Methods:

setPerson (char *n, long int id) //allows user to set information for each person

A function called Print () // should be a virtual function, that prints the data attributes of the class.

and a destructor

Also define two classes that are derived from class Employee, called Manager and Secretary. Each class should inherit all members from the base class and has its own data members and member functions as well.

The Manager should have a data member called degree for his/her undergraduated degree (e.g. diploma, bachelor, master, doctor), the Secretary should have her contract (can be a Boolean value 1/0 for permanent/temporary).

All member functions of derived class should be overrided from their base class.

Write the following main() to test your classes:

int main() {

Employee * p = new Manager(Bruce Lee, 0234567, Dr.);

P.print();

Secretary p2;

p2.setPerson(Wilma Jones, 0341256, permanent);

delete p;

p = & p2;

p.Print();

return 0;

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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 Databases Questions!