logo

Java Arrays


Show

Java offers a data configuration, the array, which amass a fixed-size chronological collection of parts of the identical type. An array is utilized to store a group of data, excluding it is frequently more practical to imagine an array as a compilation of variables of a similar type.

Rather than declaring person variables, like number0, number1, ..., and number99, you state one array changeable for instance numbers and exercise numbers[0], numbers[1], and ..., numbers[99] to represent entity variables.

This tutorial brings in how to state array variables, generate arrays, and course arrays using indexed inconsistent.

Declaring Array Variables

To employ an array in a plan, you must state an inconsistent to reference the selection, and you have to identify the kind of array the variable can reference. Here is the syntax for declaring an array variable:

Syntax

dataType[] arrayRefVar;   // preferred way.
or
dataType arrayRefVar[];  // works but not preferred way.

Note: The style dataType[] arrayRefVar is preferred. The style dataType arrayRefVar[] comes from the C/C++ language and was adopted in Java to accommodate C/C++ programmers.

Example

The following code snippets are examples of this syntax:

double[] myList;   // preferred way.
or
double myList[];   // works but not preferred way.

Creating Arrays

You can create an array by using the new operator with the following syntax:

Syntax

arrayRefVar = new dataType[arraySize];

The above statement does two things −

  • It creates an array using new dataType[arraySize].
  • It assigns the reference of the newly created array to the variable arrayRefVar.

Declaring an array variable, creating an array, and assigning the reference of the array to the variable can be combined in one statement, as shown below

dataType[] arrayRefVar = new dataType[arraySize];

Alternatively, you can create arrays as follows:

dataType[] arrayRefVar = {value0, value1, ..., valuek};

The array elements are accessed through the index. Array indices are 0-based; that is, they start from 0 to arrayRefVar.length-1.

Example

The following statement declares an array variable, myList, creates an array of 10 elements of double type and assigns its reference to myList −

double[] myList = new double[10];

The following picture represents the array myList. Here, myList holds ten double values and the indices are from 0 to 9.

java array

Processing Arrays

Either when processing array elements, we often use for loop or each loop since all of the constituents in an array are of the equivalent type and the size of the selection is known.

Example

Here is a complete example showing how to create, initialize, and process arrays −

public class TestArray {

   public static void main(String[] args) {
      double[] myList = {1.9, 2.9, 3.4, 3.5};

      // Print all the array elements
      for (int i = 0; i < myList.length; i++) {
         System.out.println(myList[i] + " ");
      }
     
      // Summing all elements
      double total = 0;
      for (int i = 0; i < myList.length; i++) {
         total += myList[i];
      }
      System.out.println("Total is " + total);
      
      // Finding the largest element
      double max = myList[0];
      for (int i = 1; i < myList.length; i++) {
         if (myList[i] > max) max = myList[i];
      }
      System.out.println("Max is " + max);  
   }
}

This will produce the following result −

Output

1.9
2.9
3.4
3.5
Total is 11.7
Max is 3.5

The foreach Loops

JDK 1.5 initiated a new for circle known as for each loop or improved for loop, which allows you to cross the absolute array consecutively without by an index variable.

Example

The following code displays all the elements in the array myList −

public class TestArray {

   public static void main(String[] args) {
      double[] myList = {1.9, 2.9, 3.4, 3.5};

      // Print all the array elements
      for (double element: myList) {
         System.out.println(element);
      }
   }
}

This will produce the following result:

Output

1.9
2.9
3.4
3.5

Passing Arrays to Methods

Presently as you can pass prehistoric type worth to techniques, you can also bypass arrays to techniques. For instance, the subsequent method presents the elements in an int array −

Example

public static void printArray(int[] array) {
   for (int i = 0; i < array.length; i++) {
      System.out.print(array[i] + " ");
   }
}

You can invoke it by passing an array. For example, the following statement invokes the printArray method to display 3, 1, 2, 6, 4, and 2

Example

printArray(new int[]{3, 1, 2, 6, 4, 2});

Returning an Array from a Method

A method may also return an array. For example, the following method returns an array that is the reversal of another array −

Example

public static int[] reverse(int[] list) {
   int[] result = new int[list.length];

   for (int i = 0, j = result.length - 1; i < list.length; i++, j--) {
      result[j] = list[i];
   }
   return result;
}

The Arrays Class

The java.util.Arrays class holds a variety of static techniques for sorting and penetrating arrays, comparing arrays, and satisfying array elements. These techniques are overfull for all prehistoric types.

Sr.No.Method & Description
1

public static int binarySearch(Object[] a, Object key)

Searches the specified array of Object ( Byte, Int, double, etc.) for the specified value using the binary search algorithm. The array must be sorted prior to making this call. This returns the index of the search key if it is contained in the list; otherwise, it returns ( – (insertion point + 1)).

2

public static boolean equals(long[] a, long[] a2)

Returns true if the two specified arrays of longs are equal. Two arrays are considered equal if both arrays contain the same number of elements, and all corresponding pairs of elements in the two arrays are equal. This returns true if the two arrays are equal. The same method could be used by all other primitive data types (Byte, Short, Int, etc.)

3

public static void fill(int[] a, int val)

Assigns the specified int value to each element of the specified array of ints. The same method could be used by all other primitive data types (Byte, Short, Int, etc.)

4

public static void sort(Object[] a)

Sorts the specified array of objects into ascending order, according to the natural ordering of its elements. The same method could be used by all other primitive data types ( Byte, Short, Int, etc.)