I am adding information about different books, cd, dvd from main() I am trying to use inheritance in this project...
First, i am a beginner so keep that in mind when you help me. please try to keep it really simple.. I will post partial code where i need help then i will post the full code at the bottom..
now in the items class
i am not sure what i do with the item being passed in?
class CD extends Item
{
private String artist;
private String members;
private int number;
public CD(Item musicCD, String... members) // need help
{
members = members;
}
please keep in mind i am new to java. Thank you..