Tagged Questions
6
votes
10answers
574 views
Commonly Misunderstood Elements of Java? [closed]
I was making an array of objects, and wanted to run the
constructor for the object on every element of the array to
initialize them like so:
cells = new Cell[cols];
Arrays.fill(cells, new Cell());
...