Java Arrays equals(Object[], Object[]) 方法



描述

Java Arrays equals(Object[] a, Object[] a2) 方法用于判断两个指定的对象数组是否相等。如果两个对象 e1 和 e2 使用 Objects.equals(e1, e2) 判断为相等,则认为它们相等。两个数组相等是指它们包含相同的元素,并且顺序相同。如果两个数组引用都为 null,则认为它们相等。

声明

以下是 java.util.Arrays.equals() 方法的声明

public static boolean equals(Object[] a, Object[] a2)

参数

  • a − 要测试相等性的数组。

  • a2 − 要测试相等性的另一个数组。

返回值

如果两个数组相等,则返回 true,否则返回 false。

异常

Java Arrays equals(Object[] a, int aFromIndex, int aToIndex, Object[] b, int bFromIndex, int bToIndex) 方法

描述

Java Arrays equals(Object[] a, int aFromIndex, int aToIndex, Object[] b, int bFromIndex, int bToIndex) 方法用于判断两个对象数组在给定范围内的部分是否相等。如果两个对象 e1 和 e2 使用 Objects.equals(e1, e2) 判断为相等,则认为它们相等。如果任何一个数组为 null,则会抛出 NullPointerException 异常。

声明

以下是 java.util.Arrays.compare(Object[] a, int aFromIndex, int aToIndex, Object[] b, int bFromIndex, int bToIndex) 方法的声明

public static boolean equals​(Object[] a, int aFromIndex, int aToIndex, Object[] b, int bFromIndex, int bToIndex)

参数

  • a − 第一个要测试相等性的数组。

  • aFromIndex − 第一个数组中要测试相等性的第一个元素的索引(包含)。

  • aToIndex − 第一个数组中要测试相等性的最后一个元素的索引(不包含)。

  • b − 第二个要测试相等性的数组。

  • bFromIndex − 第二个数组中要测试相等性的第一个元素的索引(包含)。

  • bToIndex − 第二个数组中要测试相等性的最后一个元素的索引(不包含)。

返回值

如果两个数组在指定范围内相等,则此方法返回 true。

异常

  • IllegalArgumentException − 如果 aFromIndex > aToIndex 或 bFromIndex > bToIndex

  • ArrayIndexOutOfBoundsException − 如果 aFromIndex < 0 或 aToIndex > a.length 或 bFromIndex < 0 或 bToIndex > b.length

  • NullPointerException − 如果任一数组为 null

检查对象数组是否相等示例

以下示例演示了如何使用 Java Arrays equals(Object[], Object[]) 方法。首先,我们创建了三个学生对象的数组,并使用 equals(Object[], Object[]) 方法比较它们。根据结果,打印出比较结果。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {

      // initializing three Student arrays
      Student[] arr1 = { new Student(1, "Julie"), new Student(3, "Adam"), new Student(2, "Robert") };
      Student[] arr2 = { new Student(4, "Jene"), new Student(5, "John"), new Student(2, "Robert") };
      Student[] arr3 = { new Student(1, "Julie"), new Student(3, "Adam"), new Student(2, "Robert") };

      // comparing arr1 and arr2
      boolean retval = Arrays.equals(arr1, arr2);
      System.out.println("arr1 and arr2 equal: " + retval);

      // comparing arr1 and arr3
      boolean retval2 = Arrays.equals(arr1, arr3);
      System.out.println("arr1 and arr3 equal: " + retval2);
   }
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }

   @Override
   public boolean equals(Object obj) {
      Student s = (Student)obj;
      return this.rollNo == s.rollNo && this.name.equalsIgnoreCase(s.name);
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

arr1 and arr2 equal: false
arr1 and arr3 equal: true

检查对象子数组是否相等示例

以下示例演示了如何使用 Java Arrays equals(Object[], int, int, Object[], int, int) 方法。首先,我们创建了三个学生对象的数组,并使用 equals(Object[], int, int, Object[], int, int) 方法比较它们。根据结果,打印出比较结果。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {

      // initializing three Student arrays
      Student[] arr1 = { new Student(1, "Julie"), new Student(3, "Adam"), new Student(2, "Robert") };
      Student[] arr2 = { new Student(4, "Jene"), new Student(5, "John"), new Student(2, "Robert") };
      Student[] arr3 = { new Student(1, "Julie"), new Student(3, "Adam"), new Student(2, "Robert") };

      // comparing arr1 and arr2
      boolean retval = Arrays.equals(arr1, 0, 2, arr2, 0, 2);
      System.out.println("arr1 and arr2 equal: " + retval);

      // comparing arr1 and arr3
      boolean retval2 = Arrays.equals(arr1, 0, 2, arr3, 0, 2);
      System.out.println("arr1 and arr3 equal: " + retval2);
   }
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }

   @Override
   public boolean equals(Object obj) {
      Student s = (Student)obj;
      return this.rollNo == s.rollNo && this.name.equalsIgnoreCase(s.name);
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

arr1 and arr2 equal: false
arr1 and arr3 equal: true

检查对象子数组是否相等示例

以下示例演示了如何使用 Java Arrays equals(Object[], int, int, Object[], int, int) 方法。首先,我们创建了三个学生对象的数组,并使用 equals(Object[], int, int, Object[], int, int) 方法比较它们的子数组。根据结果,打印出比较结果。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {

      // initializing three Student arrays
      Student[] arr1 = { new Student(1, "Julie"), new Student(3, "Adam"), new Student(2, "Robert") };
      Student[] arr2 = { new Student(4, "Jene"), new Student(5, "John"), new Student(2, "Robert") };
      Student[] arr3 = { new Student(1, "Julie"), new Student(3, "Adam"), new Student(2, "Robert") };

      // comparing arr1 and arr2
      boolean retval = Arrays.equals(arr1, 2, 3, arr2, 2, 3);
      System.out.println("Last element of arr1 and arr2 equal: " + retval);

      // comparing arr1 and arr3
      boolean retval2 = Arrays.equals(arr1, 2, 3, arr3, 2, 3);
      System.out.println("Last element of arr1 and arr3 equal: " + retval2);
   }
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }

   @Override
   public boolean equals(Object obj) {
      Student s = (Student)obj;
      return this.rollNo == s.rollNo && this.name.equalsIgnoreCase(s.name);
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Last element of arr1 and arr2 equal: true
Last element of arr1 and arr3 equal: true
java_util_arrays.htm
广告