求大神帮解答。
public void testSort3(){
List<String>stringList=new ArrayList<String>();
Random random=new Random();
String s="0123456789qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM";
char b;
for(int i=0;i<10;i++){
StringBuffer str=new StringBuffer();
do{
int a=random.nextInt(10);
for(int j=0;j<a;j++){
b=s.charAt(random.nextInt(62));
str.append(b);
}
}while(stringList.contains(str));
stringList.add(str.toString());
}
System.out.println("-------------------排序前---------------");
for (String cr : stringList) {
System.out.println("元素"+cr);
}
Collections.sort(stringList);
System.out.println("------------排序后-----------------");
for (String te: stringList) {
System.out.println("元素"+te);
}
}
s.charAt(); 的作用?
random.nextInt(62); 的作用?