package demo.collection;
import java.util.*;
/**
- 将要完成:
- 1.通过Collections.sort()方法,对Integer泛型的List进行排序;
- 2.对String泛型的List进行排序;
-
3.对其他类型泛型的List进行排序,以Student为例。
*/
public class CollectionsTest {/**3.
- List<String>,往其中添加10条随机的字符串
- 每条字符串的长度为10以内的随机整数
- 每条字符串的每个字符都为随机生成的字符,字符可以重复
-
每条随机字符串不能重复*/
public void testSort3() {
List<String> stringList = new ArrayList<String>();
String base = "abcdefghijklmnopqrstuvwxyz0123456789";
StringBuffer sb;
Random random = new Random();
int length;//随机字符串的长度for (int i = 0; i < 10; i++) {
// 每条字符串的长度为10以内的随机整数
length = random.nextInt(10);
// System.out.println("lenth:" + length);
sb = new StringBuffer();
// 每条字符串的每个字符都为随机生成的字符,字符可以重复
for (int j = 0; j < length; j++) {
sb.append(base.charAt(random.nextInt(length)));
}
//如果sb重复,这跳出本次循环
if(stringList.contains(sb)) {
continue;
}//不重复,就添加到 stringList去
else {
System.out.println("将要添加字符串:' " + sb.toString() + " ',它的长度为:" + length);
stringList.add(sb.toString());
}}
System.out.println("------------排序前-------------");
for (String string : stringList) {
System.out.println("元素:" + string);
}
Collections.sort(stringList);
System.out.println("--------------排序后---------------");
for (String string : stringList) {
System.out.println("元素:" + string);
}
}
public static void main(String[] args) {
CollectionsTest ct = new CollectionsTest();
ct.testSort3();
}
}