Java - Arrays: Declaring Array Variables
Java - Arrays: Declaring Array Variables
Java provides a data structure, the array, which stores a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type. Instead of declaring individual variables, such as number0, number1, ..., and number99, you declare one array variable such as numbers and use numbers[0], numbers[1], and ..., numbers[99] to represent individual variables. T his tutorial introduces how to declare array variables, create arrays, and process arrays using indexed variables.
Note: T he style dataT ype[] arrayRefVar is preferred. T he style dataT ype arrayRefVar[] comes from the C/C++ lang uag e and was adopted in Java to accommodate C/C++ prog rammers.
Example:
T he following code snippets are examples of this syntax:
double[] myList; or double myList[]; // works but not preferred way. // preferred way.
Creating Arrays:
You can create an array by using the new operator with the following syntax:
arrayRefVar = new dataType[arraySize];
T he above statement does two thing s: It creates an array using new dataT ype[arraySize]; It assig ns the reference of the newly created array to the variable arrayRefVar. Declaring an array variable, creating an array, and assig ning the reference of the array to the variable can be combined in one statement, as shown below:
dataType[] arrayRefVar = new dataType[arraySize];
T he array elements are accessed throug h the index. Array indices are 0-based; that is, they start from 0 to arrayRefVar.leng th-1 .
Example:
Following statement declares an array variable, myList, creates an array of 10 elements of double type and assig ns its reference to myList:
double[] myList = new double[10];
Following picture represents array myList. Here, myList holds ten double values and the indices are from 0 to 9.
Processing Arrays:
When processing array elements, we often use either for loop or foreach loop because all of the elements in an array are of the same type and the size of the array is known.
Example:
Here is a complete example of 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); } }
Example:
T he 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); } } }
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:
printArray(new int[]{3, 1, 2, 6, 4, 2});
SN 1
Methods with Desc ription public static int binarySearc h(O bjec t[] a, O bjec t key) Searches the specified array of Object ( Byte, Int , double, etc.) for the specified value using the binary search alg orithm. T he array must be sorted prior to making this call. T his returns index of the search key, if it is contained in the list; otherwise, (-(insertion point + 1). public static boolean equals(long [] a, long [] a2) Returns true if the two specified arrays of long s are equal to one another. T wo 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. T his returns true if the two arrays are equal. Same method could be used by all other primitive data types (Byte, short, Int, etc.) public static void fill(int[] a, int val) Assig ns the specified int value to each element of the specified array of ints. Same method could be used by all other primitive data types (Byte, short, Int etc.) public static void sort(O bjec t[] a) Sorts the specified array of objects into ascending order, according to the natural ordering of its elements. Same method could be used by all other primitive data types ( Byte, short, Int, etc.)