Skip to content
Advertisement

How can I initialize an ArrayList with all zeroes in Java?

It looks like arraylist is not doing its job for presizing:

JavaScript

Afterwards when I try to access it:

JavaScript

Instead of returning 0 it throws IndexOutOfBoundsException: Index 5 out of bounds for length 0.

Is there a way to initialize all elements to 0 of an exact size like what C++ does?

Advertisement

Answer

The integer passed to the constructor represents its initial capacity, i.e., the number of elements it can hold before it needs to resize its internal array (and has nothing to do with the initial number of elements in the list).

To initialize an list with 60 zeros you do:

JavaScript

If you want to create a list with 60 different objects, you could use the Stream API with a Supplier as follows:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement