Question: This is Java. In this lab, you will implement a shopping cart using the ArrayList class. Create a class named Item that models an item
This is Java. In this lab, you will implement a shopping cart using the ArrayList class.
- Create a class named Item that models an item one would purchase. It has a name, description, price, and quantity (the quantity purchased). Whenever you create a new item, you should provide those properties.
- This class to calculate and print the item cost. 3 coffee @ $7.99 = $23.79
- Create a class ShoppingCart that models a shopping cart. It has the customer name, todays date, and an ArrayList of items. In order to start an instance, you should provide the customer name and the date. This class has the following actions:
- Add item to cart
- Remove item from cart
- Change item quantity
- Display items names and descriptions
- Display carts contents
- Create a class ShoppingCartManager that shows a menu to the user to choose an action to do: add item, remove an item, modify item quantity, display items names and descriptions, or display carts cart contents.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
