I am copying the program from Chapter 14 from HeadFirstJava;QuizCardBuilder.java. But there is an error when I am writting program on ArryaList.
Here is a program :
Following lines where I found Error: 1) private ArrayList<QuizCard> cardList; 2) cardList = new ArrayList<QuizCard>; 3) QuizCard card = new QuizCard(question.getText(),answer.getText()); cardList.add(card);
Please help me to find out error. where I went wrong.
[edit - added code tags] [ August 02, 2007: Message edited by: Fred Rosenberger ]
I added code tags to your post to make it easier to read. Please use them yourself in the future when you post source code.
Now, what exactly is the error you are getting, and what version of Java are you using? I'm guessing it may be because you have 1.4, and this code uses features introduced in 1.5, but without those error messages, it's just a stab in the dark.
Never ascribe to malice that which can be adequately explained by stupidity.
divya sharma
Ranch Hand
Joined: Jan 25, 2007
Posts: 87
posted
0
Well I am using 5.0 version. I am using eclipse to complie the code .. I am unable to compile the code
Thanks Divya
David McCombs
Ranch Hand
Joined: Oct 17, 2006
Posts: 212
posted
0
Posting the error message might be helpful.
"Should array indices start at 0 or 1? My compromise of 0.5 was rejected without, I thought, proper consideration."- Stan Kelly-Bootle
subodh gupta
Ranch Hand
Joined: Jul 23, 2007
Posts: 203
posted
0
Hi,
error is mentioned above do it like this:
if problem still persists please give me QuizCard class. [ August 03, 2007: Message edited by: subodh gupta ]