Answered step by step
Verified Expert Solution
Question
1 Approved Answer
- An abstract superclass Food; - A class Burger, which is a concrete (i.e. non-abstract) subclass of Food; - Keep in mind that you would
- An abstract superclass Food; - A class Burger, which is a concrete (i.e. non-abstract) subclass of Food; - Keep in mind that you would eventually add other subclasses of Food (but not now). Every Food should have a String name, and a double price. Every Burger should also have a boolean combo and a String[] representing its list of toppings. Write the code for the two classes, with the necessary instance variables and methods (with appropriate visibility), for the main method below to produce the output shown. When designing the two classes, avoid code duplication when possible. public static void main(String[] args) { String[] toppings = {"Pickles", "Tomatoes", "Onions"}; Burger lilMark = new Burger("Lil' Mark", 2.25, true, toppings); = = System.out.println(lilMark); } Output: Food: Lil' Mark Price: $2.25 Combo: Yes Toppings: Pickles, Tomatoes, onions
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started