Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Chapter 10. PC #10. Ship, CruiseShip, and CargoShip Classes ( read instructions carefully ) Design a Ship class that the following members: A field for

Chapter 10. PC #10. Ship, CruiseShip, and CargoShip Classes (read instructions carefully)

Design a Ship class that the following members:

A field for the name of the ship (a string).

A field for the year that the ship was built (a string).

A constructor and appropriate accessors and mutators.

A toString method that displays the ships name and the year it was built.

Design a CruiseShip class that extends the Ship class. The CruiseShip class should have the following members:

A field for the maximum number of passengers (an int).

A constructor and appropriate accessors and mutators.

A toString method that overrides the toString method in the base class. The

CruiseShip classs toString method should display only the ships name and the maximum number of passengers.

Design a CargoShip class that extends the Ship class. The CargoShip class should have the following members:

A field for the cargo capacity in tonnage (an int).

A constructor and appropriate accessors and mutators.

A toString method that overrides the toString method in the base class. The

CargoShip classs toString method should display only the ships name and the ships cargo capacity.

In java language.

In the main class, you should read the input file and create an array containing Ship, CargoShip, CruiseShip objects based on the information provided on each line. The file is in CSV (comma separated values) format. This means each line contains multiple data elements separated by comma. You can use Scanner class to input the data or if you know how to work with StringTokenizer you can also use it. Another option is to use the split() method in the String class.

The first column in the file contains the ship type (Ship, CruiseShip, or CargoShip) as a String. The second column contains the Ship Name as a String. The third column contains Year Built as a String. The forth column contains different information for different ship types:

For ship type = Ship - empty (ignore)

For ship type=CargoShip - Cargo Capacity (int)

For ship type=CruiseShip - Max Passengers (int)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Inference Control In Statistical Databases From Theory To Practice Lncs 2316

Authors: Josep Domingo-Ferrer

2002nd Edition

3540436146, 978-3540436140

More Books

Students also viewed these Databases questions

Question

List and explain the types of scales.

Answered: 1 week ago

Question

What are the best practices for managing a large software project?

Answered: 1 week ago

Question

How does clustering in unsupervised learning help in data analysis?

Answered: 1 week ago