Java Arrays sort Method to Sort Arrays

By | July 3, 2019

Task: Write a Java Program to use Java Arrays sort Method to Sort Arrays in Ascending Order. Use arrays containing of different types of data that is arrays of integers, arrays of doubles or arrays of strings strings etc.

Java Arrays sort Method to Sort Arrays with example Java programs

Java Arrays sort Method to Sort Arrays with example Java programs

What is Java Arrays sort Method?

Actually there is a class in java.util package known as Arrays class. This Arrays class contains a sort method. This sort() method is used to sort any type of array in ascending order.

What is Advantage of using sort() Method?

Therefore, sort method will save effort and time of the programmer. Because, the programmers need not  writing a lot of code code to describe his own logic for sorting arrays.

Syntax of Arrays.sort() Method

The simplest general form of using Arrays.sort() method is as follows:

Arrays.sort(name-of-array);

sort() method can sort arrays of byte, short, integer, long, float, double, char, or String etc.

Example: Use Arrays.sort() to Sort Array of integers

/*
 * This Program shows the use of Arrays.sort()
method to sort integer array in ascending order
in Java programming
 */
package arrayssort;

import java.util.Arrays;

/**
  * @author www.EasyCodebook.com
 */
public class ArraysSort {

    public static void main(String[] args) {
      int a[]={20,40,10,50,30}; 
      Arrays.sort(a); 
      System.out.println("Sorted Array in ascending order is:");
      for(int i=0;i<5;i++) 
          System.out.print(a[i]+", ");
 }
 
}

The output will be:
Sorted Array in ascending order is:
10, 20, 30, 40, 50,

We have used an array of integers, initialized with values. You can input numbers in array at run time, view this Java program.

Using sort() to sort Strings

/*
 * This Program shows the use of Arrays.sort()
method to sort String array in ascending order
in Java programming
 */
package arrayssort;

import java.util.Arrays;

/**
  * @author www.EasyCodebook.com
 */
public class ArraysSort {

    public static void main(String[] args) {
      String fruits[]={"Mango", "Banana", "Apple", "Peach", "Orange"}; 
      Arrays.sort(fruits); 
      System.out.println("Sorted Array of strings in ascending order is:");
      for(int i=0;i<5;i++) 
          System.out.print(fruits[i]+", ");
    }
    
}

The output of Java program to sort array of strings is:
Sorted Array of strings in ascending order is:
Apple, Banana, Mango, Orange, Peach,

How to use Arrays sort() for double numbers arrays

/*
 * This Program shows the use of Arrays.sort()
method to sort String array in ascending order
in Java programming
 */
package arrayssort;

import java.util.Arrays;

/**
  * @author www.EasyCodebook.com
 */
public class ArraysSort {

    public static void main(String[] args) {
      String fruits[]={"Mango", "Banana", "Apple", "Peech", "Orange"}; 
      Arrays.sort(fruits); 
      System.out.println("Sorted Array of strings in ascending order is:");
      for(int i=0;i<5;i++) 
          System.out.print(fruits[i]+", ");
    }
    
}

The output of sorting array of double values  is:
Sorted Array of double values in ascending order is:
1.44, 9.95, 10.55, 30.36, 110.12,

So we have seen many example programs to sort arrays in ascending order using built in sort() method of Arrays class. Remember that Arrays class is in java.util package. Therefore we have to use an import statement in our Java program:

import java.util.Arrays;

You may also like to read How to use Java Arrays class’s sort() method to sort numbers in descending order.

Loading

One thought on “Java Arrays sort Method to Sort Arrays

  1. Pingback: Java Arrays sort in Descending order » EasyCodeBook.com

Leave a Reply

Your email address will not be published. Required fields are marked *