package com.imooc.collection_map3;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;
/*1.创建List<String>之后,往其中添加十条随机字符串
2.每条字符串的长度为10以内的随机数
3.每条字符串的每个字符都为随机生成的字符,字符可以重复
3.每条随机字符串不可以重复*/
public class SuiJiZiFuCuanPaiXu {
//定义List 属性;
List<String> list = new ArrayList<String>() ;
//构造方法.初始化 list 和定义循环添加10个不相同的字符串;
public SuiJiZiFuCuanPaiXu(){
String k;
for(int i=0;i<10;i++){
do{
k=testString();
}while(list.contains(k));
System.out.println("添加第"+(i+1)+"个字符串: "+k);
list.add(k);
}
}
//随机生成长度为10以内的随机字符串;并返回字符串;
public String testString(){
StringBuilder sb = new StringBuilder();
String str ="01234ABCmopqDEFGnKNO579PQRSTUVW6XYZabcdHIJefghijklrstLMwx8yz";
Random rd = new Random();
int j = rd.nextInt(10)+1; //注意这里加1的用意
for(int i=0; i<j;i++){
sb.append(str.charAt(rd.nextInt(str.length())));
}
//System.out.println(sb.toString());
return sb.toString();
}
//遍历 list的方法;
public void testForeach(){
if(!list.isEmpty()){
for (String str : list) {
System.out.println("排序前第"+(list.indexOf(str)+1)+"个字符串: "+str);
}
}
}
//给list排序后,并打印输出;
public void testSort(){
if(!list.isEmpty()){
Collections.sort(list); //这一章最重要的内容
for (String str : list) {
System.out.println("排序后第"+(list.indexOf(str)+1)+"个字符串: "+str);
}
}
} /** * @param args */
public static void main(String[] args) {
// TODO Auto-generated method stub
//主函数就实例化一个对象;
SuiJiZiFuCuanPaiXu trds = new SuiJiZiFuCuanPaiXu();
System.out.println("*********************排序前*********************");
trds.testForeach();
System.out.println("*********************排序后*********************");
trds.testSort();
System.out.println("排序的结果是按:数字0-9到字母A-Z到a-z的顺序来排序.");
}
}
这是我对http://www.imooc.com/article/12653 大神写的原文代码的改良版 更加容易理解一些