继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Java入门第三季利用Collections排序

笨鸟Keep
关注TA
已关注
手记 2
粉丝 0
获赞 29
package com.imooc.collection;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;

public class testSort3 {

    List<String> stringList;

    public testSort3(){
        this.stringList = new ArrayList<String>();
    }

    public void sort(){
        String randomStr = "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
        Random random = new Random();
        for(int i=0;i<10;i++){
            StringBuilder strbld = new StringBuilder(); 
            int ranLen = random.nextInt(10)+1;
            for(int j=0;j<ranLen;j++){
                char temp = randomStr.charAt(random.nextInt(randomStr.length()));
                strbld.append(temp);
            }
            stringList.add(strbld.toString());
        }
        System.out.println("-------排序前--------");
        this.show();
        Collections.sort(stringList);
        System.out.println("-------排序后--------");
        this.show();
    }

    public void show(){
        for(String str:this.stringList){
            System.out.println(str);
        }
    }

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        testSort3 ts3 = new testSort3();
        ts3.sort();
    }

}
}
打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP