Question: JAVA: Write the Potion class needed by the following program in order to produce the output shown. Note it must work for other types of
JAVA:
Write the Potion class needed by the following program in order to produce the output shown. Note it must work for other types of Potion as well, such as new Potion("poison", 5). There is no need to check that the amount of potion is greater than zero. 
class PotionTest( public static void main (String[] args) Potion potion - new Potion ("healing", 10) System.out.println (potion); // prints healing: 10 potion.drink (3) // drink the specified amount of the potion System.out.println (potion); // prints healing:7
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
