想知道,为什么不能这么写
请问各位大佬,为什么不能这么写
请问各位大佬,为什么不能这么写
2018-11-02
public void testSort3() { List <String> list = new ArrayList<String>(); Random random=new Random(); for(int i=0;i<10;i++) { String temp = ""; for(int j =0;j<10;j++) { Integer k = (random.nextInt(10)); temp+=(k.toString()); } list.add(temp); } System.out.println("排序前:"+list); Collections.sort(list); System.out.println("排序后"+ list); }
举报