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



描述

Java Arrays equals(byte[] a, byte[] a2) 方法返回 true,如果两个指定的字节数组彼此相等。如果两个数组包含相同顺序的相同元素,则它们相等。如果两个数组引用均为 null,则它们被认为相等。

声明

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

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

参数

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

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

返回值

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

异常

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

描述

Java Arrays equals(byte[] a, int aFromIndex, int aToIndex, byte[] b, int bFromIndex, int bToIndex) 方法返回 true,如果给定范围内的两个字节数组彼此相等。如果任何数组为 null,则抛出 NullPointerException。

声明

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

public static boolean equals​(byte[] a, int aFromIndex, int aToIndex, byte[] 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(byte[], byte[]) 方法的用法。首先,我们创建了三个字节数组,并使用 equals(byte[], byte[]) 方法对它们进行了比较。根据结果,打印出比较结果。

package com.tutorialspoint;

import java.util.Arrays;

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

      // initializing three byte arrays
      byte[] arr1 = new byte[] { 10, 20, 30 };
      byte[] arr2 = new byte[] { 11, 22, 30 };
      byte[] arr3 = new byte[] { 10, 20, 30 };

      // 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);
   }
}

输出

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

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

检查字节子数组相等性示例

以下示例演示了 Java Arrays equals(byte[], int, int, byte[], int, int) 方法的用法。首先,我们创建了三个字节数组,并使用 equals(byte[], int, int, byte[], int, int) 方法对它们进行了比较。根据结果,打印出比较结果。

package com.tutorialspoint;

import java.util.Arrays;

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

      // initializing three byte arrays
      byte[] arr1 = new byte[] { 10, 20, 30 };
      byte[] arr2 = new byte[] { 11, 22, 30 };
      byte[] arr3 = new byte[] { 10, 20, 30 };

      // 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);
   }
}

输出

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

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

检查字节子数组相等性示例

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

package com.tutorialspoint;

import java.util.Arrays;

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

      // initializing three byte arrays
      byte[] arr1 = new byte[] { 10, 20, 30 };
      byte[] arr2 = new byte[] { 11, 22, 30 };
      byte[] arr3 = new byte[] { 10, 20, 30 };

      // 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);
   }
}

输出

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

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