Java Arrays.sort(byte[] a)

Syntax

Arrays.sort(byte[] a) has the following syntax.

public static void sort(byte[] a)

Example

In the following code shows how to use Arrays.sort(byte[] a) method.


/*  w  ww  .  ja  v a 2 s.  c  om*/

import java.util.Arrays;

public class Main {

  public static void main(String[] args) {

    // initializing unsorted byte array
    byte bArr[] = { 10, 12, 7, 35 };

    System.out.println(Arrays.toString(bArr));

    // sorting array
    Arrays.sort(bArr);

    System.out.println(Arrays.toString(bArr));
  }
}

The code above generates the following result.