[JAVA] – How to subscribe all values of an array?

Use the method Arrays.fill(<array>,<value>);`

Following an example.

import java.util.*

int[] myArray = new int[4];
Arrays.fill(myArray, -1);

The result of this example will be [-1,-1,-1,-1];

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s