| 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.
|
 |
 |
|
|
subject: Array overwritten
|
|
|