开心每一天1111
List<Long> listlong = new ArrayList<Long>();for (int i = 0; i < 50; i++) {t:while (true){long temp = Math.round(Math.random()*100);if(listlong.contains(temp)) continue t ;else {listlong.add(temp);break ;}}}Collections.sort(listlong);for(Long l : listlong){System.out.println(l);}Collections sort 要 调了 api 直接 升序排列,你 写个类似 冒泡 排序的算法 排个序 就OK 了