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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started