帮忙看看什么问题,老是报调试,还有排序后面的不显示

来源:6-5 应用 Collections.sort() 实现 List 排序

石三春

2017-07-17 19:25

http://img.mukewang.com/596c9df20001a5e008750256.jpg

http://img.mukewang.com/596c9df2000179af07640384.jpg

http://img.mukewang.com/596c9e60000136c602700217.jpg

http://img.mukewang.com/596c9e600001fc0506340349.jpg

如题suo shi

写回答 关注

2回答

  • qq_继承了D之意志的男人_0
    2017-07-25 16:21:30
     public void testsort3() {
        	  String a="0123456789qwertyuiopasdfghjklzxcvbnmQWERTYIOPASDFGHJKLzxcvbnm";
        	  Random rd=new Random();    	  
        	 List<String>stringList=new ArrayList<String>();
        	  for(int i=0;i<10;i++) {
        		  StringBuilder sb=new StringBuilder(); 
        		  for(int j=0;j<1+rd.nextInt(10);j++) {
        			  char cr=a.charAt((int)(rd.nextInt(62)));
        			  sb=sb.append(String.valueOf(cr));
        		  }  			
      			 System.out.println("获得字符串:"+sb);
      			 stringList.add(sb.toString());
        	  }
        	  System.out.println("-------排序前---------");
        	  for (String string :stringList) {
      			System.out.println("元素:"+string);
        	  }
        	  System.out.println("-------排序后---------");
        	  Collections.sort(stringList);
        	  for (String string :stringList) {
      			System.out.println("元素:"+string);
        	  }
        	  
          }


    街边七号

    只把大小写字母和数字添加进去 符号呢比如逗号句号引号 这些东西不算进字符?

    2017-10-10 17:24:26

    共 1 条回复 >

  • 浊酒丶
    2017-07-18 16:11:24

    全部代码拷过来,这局部代码不好看

Java入门第三季

Java中你必须懂得常用技能,不容错过的精彩,快来加入吧

409792 学习 · 4340 问题

查看课程

相似问题