Arrays.sort(int[] a) has the following syntax.
public static void sort(int[] a)
In the following code shows how to use Arrays.sort(int[] a) method.
/*from www .ja va 2 s .c o m*/ import java.util.Arrays; public class Main { public static void main(String[] args) { // initializing unsorted int array int iArr[] = {12, 1, 119, 16, 4}; System.out.println(Arrays.toString(iArr)); // sorting array Arrays.sort(iArr); System.out.println(Arrays.toString(iArr)); } }
The code above generates the following result.