java中对list的排序

 
String[] arr1 = new String[]{"3月21日发布","4月01日发布","2月21日发布","3月18日发布","1月1日发布","12月13日发布","7月25日发布"};
List<String> list = new ArrayList<String>();
for(String s : arr1){
    list.add(s);
}
System.out.println(list.toString());
Collections.sort(list, new Comparator<String>(){
    public int compare(String o1, String o2){
        System.out.println("o1:"+o1+",o2:"+o2);
        return o1.compareTo(o2);
    }
});
System.out.println(list.toString());

 

上一篇:g++ 编译


下一篇:error D8016: “/O2”和“/RTC1”命令行选项不兼容的解决方案