为了账号安全,请及时绑定邮箱和手机立即绑定

Collections.sort() 有注释哦

标签:
Java
/**
     * 3.通过Collections.sort()方法,对String泛型进行排序
     * 添加十条随机字符串;每条字符串的长度为10以内的随机整数;
     * 每条字符串的每个字符都为随机生成的字符,字符可以重复;每条随机字符串不可重复
     * 排序规则:0-9-A-Z-a-z 
     */
    public void testSort3() {
        List<String> stringList = new ArrayList<String>();
        String characters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";

        Random random = new Random();
        //添加十条随机字符串
        for(int i=0; i<10; i++) {
            String tempString = "";
            //频繁的字符串+操作,使用StringBuilder
            StringBuilder sb = new StringBuilder();
            do{
                // 每条字符串的长度为10以内的随机整数
                int strLen = random.nextInt(10);
                for(int j=0;j<strLen;j++) {
                    int charactersLen = characters.length();
                    //随机取characters中的一个字符
                    char tempChar = characters.charAt(random.nextInt(charactersLen));
                    sb.append(tempChar);
                }
                tempString = sb.toString();
            } while(stringList.contains(tempString));//每条随机字符串不可重复
            //添加字符串到stringList
            stringList.add(tempString);
            System.out.println("成功添加字符串:" + tempString);
        }

        System.out.println("-----------排序前------------");
        for(String temp: stringList) {
            System.out.println(temp);
        }
        System.out.println("-----------排序后------------");
        Collections.sort(stringList);
        for(String temp: stringList) {
            System.out.println(temp);
        }
    }
点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消