Java Collection Tutorial - 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.

//from  w ww .j av  a 2s  .  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.