please write a class Sandwich that has attributes for breadType, base cost, cost per item, and an array list of type str
Posted: Sun Jul 10, 2022 11:26 am
please write a class Sandwich that has attributes for breadType,base cost, cost per item, and an array list of type string foritems.
Add get methods for all the attributes.
Add an addItem method that accepts a string value of the item toadd to the arraylist of items.
Add a getTotalCost method that returns the base cost + the costper item * the number of items in the items array list
Add get methods for all the attributes.
Add an addItem method that accepts a string value of the item toadd to the arraylist of items.
Add a getTotalCost method that returns the base cost + the costper item * the number of items in the items array list