public Car(String make, String model, int year, String previousOwner)
{
setMake(make);
setModel(model);
setYear(year);
setPreviousOwner(previousOwner);
}
I want to be able to have multiple previousOwners able to be added. I was thinking of using an ArrayList, but not sure how to implement this.
Thanks in advance


Sign In
Create Account


Back to top









