调用: //重复项有9.5.1.2 int[] ints = new int[]{9,4,7,8,2,5,1,6,2,5,9,1}; arrayIntTest(ints); ///////////////////////////// //重复项有9.5.1.2 Integer[] integers = new Integer[]{9,4,7,8,2,5,1,6,2,5,9,1}; arrayIntegerTest(integers); /////////////////////////////…