Question: Object, Class, and Inheritance: Create a called Vehicle that has the manufacturers name (type string), number of cylinders in the engine (type int), and owner

Object, Class, and Inheritance:

Create a called Vehicle that has the manufacturers name (type string), number of cylinders in the engine (type int), and owner (type Person, given below). Then create a class called Truck that is derived from Vehicle and has additional properties: the load capacity in tons (type double since it may contain a fractional part) and towing capacity in tons (type int).

Be sure your classes have a reasonable complement of constructors, accessor, and mutator member functions, and overloaded assignment operator, and a copy constructor. Write a driver program to test all your functions.

[Text Box: class Person { public: Person(); Person(string theName); Person(const Person& theObject); string getName() const; Person& operator = (const Person& rSide); friend instream& operator >> (instream& instream, Person& personObject); friend ostream& operator << (ostream& outStream, const Person& personObject); private: string name; }; ] The definition of the class Person is shown below.

The implementation of the class is part of this Programming Assignment.

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!