Java 中 hashCode(int[] a) 方法有什么作用?
java.util.Arrays 类中的 hashCode(int[]) 方法基于指定数组的内容返回哈希码。对于任意两个非 null int 数组 a 和 b,只要 Arrays.equals(a, b),必定有 Arrays.hashCode(a) == Arrays.hashCode(b)。
示例
import java.util.Arrays;
public class ArrayDemo {
public static void main(String[] args) {
int[] ival = new int[] { 3, 5 };
int retval = ival.hashCode();
System.out.println("The hash code of value1 is: " + retval);
ival = new int[] { 19, 75 };
retval = ival.hashCode();
System.out.println("The hash code of value2 is: " + retval);
}
}
输出
The hash code of value1 is: 4072869
The hash code of value2 is: 1671711
- 相关文章
- Java 中 hashCode(obj[] a) 方法有什么作用?
- Java 中 sort(int[] a, int fromIndex, int toIndex) 方法有什么作用?
- Java 中 fill(int[], int val) 方法有什么作用?
- Java 中 sort(int[] a) 方法有什么作用?
- Java 中 remove(int) 方法有什么作用?
- Java 中 int capacity() 方法有什么作用?
- Java 中 get(int) 方法有什么作用?
- Java 中 removeRange(int fromIndex, int toIndex) 方法有什么作用?
- Java 中 equals(int[] a1, int[] a2) 方法有什么作用?
- Java 中 copyOf(int[] original, int newLength) 方法有什么作用?
- Java 中 fill(int[], int fromIndex, int toIndex, int val) 方法有什么作用?
- Java 中 copyOfRange(int[] original, int from, int to) 方法有什么作用?
- java 中 sort(obj[] a, int fromIndex, int toIndex) 方法的作用是什么?
- java 中 ensureCapacity(int, minCapacity) 方法的作用是什么?
- java 中 elementAt(int index) 方法的作用是什么?