Write all the code necessary for a class Truck. A Truck can be described as having a make (string), model (string), gas tank capacity (double), and whether it has a manual transmission (or not)....

Write all the code necessary for a class Truck. A Truck can be described as having a make (string), model (string), gas tank capacity (double), and whether it has a manual transmission (or not). Include the following methods in your class definition. . An overloaded constructor which takes the make and model. This method throws an IllegalArgumentException if the make is "Jeep". An overloaded constructor which takes the gas tank capacity. This method throws an IllegalArgumentException if the capacity of the gas tank is not between 15 and 20 gallons (inclusive). . That's 3 constructors in total. Each constructor, once done executing, should have fully initialized all of the object's properties .a default constructor Do not implement a toString method; assume one is properly defined for you. . Do not implement any getters or setters. In java

Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here