Filling Arrays method signature : Array Reflection Utilities « Collections « Java Tutorial






public static void fill(boolean a[], boolean val)
public static void fill(boolean a[], int fromIndex, int toIndex, boolean val)
public static void fill(byte a[], byte val)
public static void fill(byte a[], int fromIndex, int toIndex, byte val)
public static void fill(char a[], char val)
public static void fill(char a[], int fromIndex, int toIndex, char val)
public static void fill(double a[], double val)
public static void fill(double a[], int fromIndex, int toIndex, double val)
public static void fill(float a[], float val)
public static void fill(float a[], int fromIndex, int toIndex, float val)
public static void fill(int a[], int val)
public static void fill(int a[], int fromIndex, int toIndex, int val)
public static void fill(long a[], long val)
public static void fill(long a[], int fromIndex, int toIndex, long val)
public static void fill(short a[], short val)
public static void fill(short a[], int fromIndex, int toIndex, short val)
public static void fill(Object a[], Object val)
public static void fill(Object a[], int fromIndex, int toIndex, Object val)
import java.util.Arrays;
public class MainClass {
  public static void main(String[] a) {
    int array[] = new int[10];
    Arrays.fill(array, 100);
    for(int i: array){
      System.out.println(i);
    }
    Arrays.fill(array, 3, 6, 50);
    for(int i: array){
      System.out.println(i);
    }
  }
}
100
100
100
100
100
100
100
100
100
100
100
100
100
50
50
50
100
100
100
100








9.7.Array Reflection Utilities
9.7.1.Array Getter and Setter Methods
9.7.2.Filling Arrays method signature
9.7.3.Filling byte array
9.7.4.Using a Utility Method in java.util.Arrays class to Initialize an Array
9.7.5.Using reflection method to create new instance for an Array
9.7.6.Using reflection method to create new instance for a two dimensional Array
9.7.7.Checking Equality
9.7.8.Using reflection to check array type and length
9.7.9.Using reflection to create, fill, and display an array
9.7.10.Get array length using reflection method
9.7.11.Doubling the size of an array: double the size of any type of array
9.7.12.To fill part of array with object value, starting at array[fromIndex] up to and including array[toIndex-1]
9.7.13.Use Arrays.asList to convert array to list
9.7.14.Use Arrays.asList to convert array to generic list
9.7.15.Use Arrays.sort to sort an array
9.7.16.Use Arrays.equals to compare arrays
9.7.17.Use Arrays.fill to set values of array