问答详情
源自:6-5 应用 Collections.sort() 实现 List 排序

为什么会生成空的字符串呢

public class CollectionTest2 {

public String basic = "abcdefghijklmnopqrstuvwxyzABCDEFDGHIJKLMNOPQRSTUVWXYZ1234567890";

public void testString(){

List<String> strings = new ArrayList<String>();

Random random = new Random();

for(int i=0;i<10;i++){

StringBuffer k = new StringBuffer();

do {

for(int j=0;j<random.nextInt(10);j++){

int num = random.nextInt(62);

k.append(basic.charAt(num));

}

} while (strings.contains(k.toString()));

strings.add(k.toString());

}

System.out.println("-------排序前--------");

for (String string : strings) {

System.out.println("元素"+string);

}

Collections.sort(strings);

System.out.println("-------排序后--------");

for (String string : strings) {

System.out.println("元素"+string);

}

}

public static void main(String[] args){

CollectionTest2 ct2 = new CollectionTest2();

ct2.testString();

}

}


提问者:aliugenb 2016-04-04 22:54

个回答

  • 在另一边
    2016-04-13 14:06:36

    只是字符串长度小于10,没有设置长度大于0

  • aliugenb
    2016-04-04 22:54:33

    -------排序前--------

    元素

    元素NON

    元素pnz

    元素6AzD

    元素mc

    元素9CZ

    元素zT

    元素6k

    元素1g2

    元素jh

    -------排序后--------

    元素

    元素1g2

    元素6AzD

    元素6k

    元素9CZ

    元素NON

    元素jh

    元素mc

    元素pnz

    元素zT