java中的hashCode(obj[] a)方法有什么作用?
java.util.Arrays 类的 hashCode(Object[]) 方法基于指定数组的内容返回一个散列码。如果该数组包含其他元素数组,那么散列码是基于它们的身份而不是内容。对于任何两个数组 a 和 b,使得 Arrays.equals(a, b) 为 true,那么 Arrays.hashCode(a) == Arrays.hashCode(b) 也为 true。
示例
import java.util.Arrays; public class ArrayDemo { public static void main(String[] args) { Object[] ob = new Object[] { 22, 7 }; int retval = ob.hashCode(); System.out.println("The hash code of value1 is: " + retval); ob = new Object[] { 3.5, 8.5 }; retval = ob.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
广告