hashSet.add((int) (Math.random() * (high - low) + low)); // lose low value if cotains negative hashSet.add((int) (Math.random() * (high - low)) + low); } // 转化为数组 Object[] temp = hashSet.toArray(); // 用集合的比较器Comparator实现定制排序 if ("desc".equalsIgnoreCase(sort_detatile)) { Arrays.sort(temp, new Comparator |