Here you can find the source of deepHash(Object[] t)
public static int deepHash(Object[] t)
//package com.java2s; //License from project: Apache License import java.util.Arrays; public class Main { public static int deepHash(Object[] t) { return Arrays.deepHashCode(t); }//from w w w . ja v a 2 s.c o m }