aspose file tools
The moose likes Beginning Java and the fly likes Array overwritten Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Array overwritten" Watch "Array overwritten" New topic
Author

Array overwritten

Rob Brew
Ranch Hand

Joined: Jun 23, 2011
Posts: 88
Hi all.


I'm building a version of battleships, two arrays are created, x and y, when added to the array list Ships. When i run the program i get the same variables appearing in each instance of the array. Any ideas?
Ryan Beckett
Ranch Hand

Joined: Feb 22, 2009
Posts: 192
The member x of each instance of Ship refers to same array instance created in init(). It's the same for y. You need to create a new ones.

 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Array overwritten
 
Similar Threads
java.util.ConcurrentModificationException
problem with arrays and paint
Calling seperate functions
InputStreamReader returns null
Battleships - guys please help me out!