Question: Using C++ Design a Ship class that has the following members: 1-A member variable for the name of the ship (a string). 2-A member variable
Using C++
Design a Ship class that has the following members:
1-A member variable for the name of the ship (a string).
2-A member variable for the year that the ship was built (a string).
3-A constructor and appropriate accessors and mutators.
4-A virtual print function that displays the ship's name and the year it was built.
Design a CruiseShip class that is derived from the Ship class. The CruiseShip class should have the following members:
1-A member variable for the maximum number of passengers (an int).
2-A constructor and appropriate accessors and mutators.
3-A print function that overrides the print function in the base class. The CruiseShip class's print function should display only the ship's name and the maximum number of passengers.
Design a CargoShip class that is derived from the Ship class. The CargoShip class should have the following members:
1-A member variable for the cargo capacity in tonnage (an int).
2-A constructor and appropriate accessors and mutators.
3-A print function that overrides the print function in the base class. The CargoShip class's print function should display only the ship's name and the ship's cargo capacity.
Show all three classes in a program that has an array of Ship pointers. The array elements should be initialized with the addresses of dynamically allocated Ship, CruiseShip, and CargoShip objects. The program shoul dthen step through the array, calling each object's print function.
//Demonstrate all functions using descriptions
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
