Using Arrays.equals()
methods we can compare if two arrays are equal. Two arrays are considered to be equal if their length, each element in both arrays are equal and in the same order to one another.
package org.kodejava.util;
import java.util.Arrays;
public class CompareArrayExample {
public static void main(String[] args) {
String[] abc = {"Kode", "Java", "Dot", "Org"};
String[] xyz = {"Kode", "Java", "Dot", "Org"};
String[] java = {"Java", "Dot", "Com"};
System.out.println(Arrays.equals(abc, xyz));
System.out.println(Arrays.equals(abc, java));
}
}
The Arrays.equals()
can be used to compare array of any primitive data type and array of Object
. If you run this example you will have a result as follows:
true
false
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024