I have an array of customers, and I want to keep track of the DVD titles each customer borrowed, so I am guessing that I will create an array for each customer. Can someone help me set it up or explain how I can execute this. This is what I have so far:
public class Customer { public Customer(String name, String number){ } } public class CustomerDatabase { Customer[] theCustomer = new Customer[100]; public void addCustomer{ } ... ...... ........ }
Suggestions/help would be appreciated. Thanks.