Guidelines > ShoppingCart.java


import java.util.*;/*Usman Moazzam, Overlake APCS, 3/10/16 Shopping Cart Project: This assignment  uses ArrayLists and explores “has-a”  relationships between classes (as  opposed to “is-a” or inheritance).*/public class ShoppingCart {   private ArrayList<ItemOrder> cart;   double discount;     public ShoppingCart() {      cart = new ArrayList<ItemOrder>();      discou ...[Show More]

Preview 1 out of 2 pages
Purchase this document to unlock the blurred part and the rest of the document

Unlock Now

Reviews( 0 )