JAVA - ARRAYLIST question?
-
Hi, I'm reading HeadFirst Java and in chapter 6 there is a battleship program it walks you through. In doing so it introduces the java class ArrayList. I'm trying to use one and load it with 3 objects but keep getting an <identifier> expected error when I compile it. Am I allowed to do this? The complete code is below and Java says the error is with the shipList.add statements. import java.util.ArrayList; public class Board { Ship go2 = new Ship(); Ship pets = new Ship(); Ship askme = new Ship(); ArrayList<Ship> shipList = new ArrayList<Ship>(); shipList.add( go2 ); shipList.add( pets ); shipList.add( askme ); } // end Board Many thanks in advance!
-
Answer:
I think your entire problem is because you put the entire code directly into the class, instead of putting it into a constructor or a method. So it would have to look something like this: public class Board { public Board() { //You forgot this, that's very crucial!!!!! Ship go2 = new Ship(); Ship pets = new Ship(); Ship askme = new Ship(); ArrayList<Ship> shipList = new ArrayList<Ship>(); shipList.add( go2 ); shipList.add( pets ); shipList.add( askme ); } } // end Board I'm pretty sure that will save your butt ^^ Good luck!
Pizza Joe! at Yahoo! Answers Visit the source
Other answers
In the same folder you are compiling Board.java into Board.class should be the file Ship.java compiled into Ship.class. Otherwise the code for Board.java looks fine. If I were you, I would install NetBeans. That IDE will help you eliminate this type of error by pre-compiling dependencies. I've got the same book somewhere you are using. I would have to locate it.
deonejuan
Related Q & A:
- How to Implement Gateway Service something similar to Oracle API gateway Using Java and Java based Open Source frameworks only?Best solution by Quora
- How do you create a Two-Dimensional ArrayList?Best solution by Stack Overflow
- How to perform operation on Arraylist?Best solution by Stack Overflow
- How to pass an ArrayList from one class to another?Best solution by stackoverflow.com
- Difference between Java 2 and Java 6?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.