Question: Write the Java class Tshirt that has the following elements. Do not add any additional methods or variables other than the ones described below. Two
Write the Java class Tshirt that has the following elements. Do not add any additional methods or variables other than the ones described below. Two properly encapsulated (private) instance variables: A string named color and a char named size. A default, no-arg constructor that sets the color instance variable to "Black" and the size instance variable to 'I'. An overloaded constructor that takes a string and a char as parameters and sets the instance variables. . A getter and setter for the color instance variable. A public instance method named price that takes a double parameter and returns a double. The method should return the method parameter multiplied by 2.5 if the size is 'XL' and if the size is anything else, return the method parameter multiplied by 1.5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
