English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
To compare two Java char arrays, use the Arrays.equals() method.
Let's first declare and initialize some char arrays.
char[] arr1 = new char[] { 'p', 'q', 'r' }; char[] arr2 = new char[] { 'p', 'r', 's' }; char[] arr3 = new char[] { 'p', 'q', 'r' };
Now let's compare the two arrays above.
Arrays.equals(arr1, arr2));
Similarly, use it for other arrays and make comparisons.
The following is an example.
import java.util.*; public class Demo { public static void main(String []args) { char[] arr1 = new char[] { 'p', 'q', 'r' }; char[] arr2 = new char[] { 'p', 'r', 's' }; char[] arr3 = new char[] { 'p', 'q', 'r' }; System.out.println(Arrays.equals(arr1, arr2)); System.out.println(Arrays.equals(arr2, arr3)); System.out.println(Arrays.equals(arr1, arr3)); } }
Output Result
false false true