StringBuffer这个类能用用collections中的sort方法进行排序吗

package en.cc.course;


import java.util.ArrayList;


import java.util.Collections;

import java.util.List;

import java.util.Random;


public class CollectionSort {

public static List<StringBuffer>string = new ArrayList<StringBuffer>();——————————实例化一个List对象

public StringBuffer randomChar(){

StringBuffer along = new StringBuffer("ASDFGHJKLQWERTYuiopzxcvbnm1234567890");

StringBuffer buffer = new StringBuffer();

Random random = new Random();

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

int s=random.nextInt(along.length());

char d=along.charAt(s);

buffer.append(d);

}

return buffer;

//System.out.println(buffer);

}

/*

* 生成10个随机字符串

*/

public void foreach(){

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

StringBuffer randomString = randomChar();

string.add(randomString);

}

}

/*

* 输出未排序前的10个字符串

*/

public void foreach2(){

for (StringBuffer stringBuffer : string) {

System.out.println(stringBuffer);

}

}

public void testSort(){

}

public static void main(String args[]){

CollectionSort ct = new CollectionSort();

ct.foreach();

ct.foreach2();

//Collections.sort(string);  ——————————老师为什么不能这样用啊;,

}


}


Hello_成
浏览 2031回答 1
1回答

D许咚

1、Collections的void sort(List<T> list)方法,只能对泛型为T的list进行排序,而泛型T必须是Comparable(比较)接口的子类。2、其他类型的数据要进行比较排序,必须继承Comparable接口并覆写equals()和compareTo()方法。3、String和Integer都是Comparable接口的子类可以进行排序。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java