Arrays.binarySearch(char[] a, char key) has the following syntax.
public static int binarySearch(char[] a, char key)
In the following code shows how to use Arrays.binarySearch(char[] a, char key) method.
Binary search needs sorted arrays.
//ww w. ja v a2 s.c o m import java.util.Arrays; public class Main { public static void main(String[] args) { // initializing sorted char array char charArr[] = {'a', 'c', 'd', 'e','f'}; // value to search char searchVal = 'e'; int retVal = Arrays.binarySearch(charArr, searchVal); System.out.println("The index of e is : " + retVal); } }
The code above generates the following result.