30

我必须创建一个方法,根据电子邮件按字母顺序对对象的ArrayList进行排序,然后打印排序后的数组。我在排序时遇到问题的部分。我已经对其进行了研究并尝试使用Collections.sort(vehiclearray);,但这对我不起作用。我是我需要一个叫做比较器的东西,但不知道它是如何工作的。我是否必须使用这些,或者像冒泡排序或插入排序这样的东西可以用于这种事情吗?

这是我到目前为止的代码:

public static void printallsort(ArrayList<vehicle> vehiclearray){

   ArrayList<vehicle> vehiclearraysort = new ArrayList<vehicle>();
   vehiclearraysort.addAll(vehiclearray);

 //Sort
   for(int i = 0; i < vehiclearraysort.size(); i++) 
   if ( vehiclearray.get(i).getEmail() > vehiclearray.get(i+1).getEmail())

//Printing 
   for(i = 0; i < vehiclearraysort.size(); i++)           
   System.out.println( vehiclearraysort.get(i).toString() + "\n");

}
4

5 回答 5

97

排序部分可以通过实现自定义来完成Comparator<Vehicle>

Collections.sort(vehiclearray, new Comparator<Vehicle>() {
    public int compare(Vehicle v1, Vehicle v2) {
        return v1.getEmail().compareTo(v2.getEmail());
    }
});

这个匿名类将用于根据其对应的电子邮件按字母顺序对中的Vehicle对象进行排序。ArrayList

升级到 Java8 还可以让您使用方法引用以不那么冗长的方式实现这一点:

Collections.sort(vehiclearray, Comparator.comparing(Vehicle::getEmail));
于 2013-10-19T20:53:43.880 回答
13

虽然这个问题已经有了一个公认的答案,但我想分享一些 Java 8 解决方案

// if you only want to sort the list of Vehicles on their email address
Collections.sort(list, (p1, p2) -> p1.getEmail().compareTo(p2.getEmail()));

.

// sort the Vehicles in a Stream
list.stream().sorted((p1, p2) -> p1.getEmail().compareTo(p2.getEmail()));

.

// sort and print with a Stream in one go
list.stream().sorted((p1, p2) -> p1.getEmail().compareTo(p2.getEmail())).forEach(p -> System.out.printf("%s%n", p));

.

// sort with an Comparator (thanks @Philipp)
// for the list
Collections.sort(list, Comparator.comparing(Vehicle::getEmail));
// for the Stream
list.stream().sorted(Comparator.comparing(Vehicle::getEmail)).forEach(p -> System.out.printf("%s%n", p));
于 2014-12-12T13:26:49.757 回答
0

在此链接中,您可以找到帮助您按降序和升序对对象数组列表进行排序的代码。

http://beginnersbook.com/2013/12/java-arraylist-of-object-sort-example-comparable-and-comparator/

于 2015-03-30T05:47:15.357 回答
0

包 srikanthdukuntla;

导入 java.util.ArrayList;导入 java.util.List;

公共类 AlphabetsOrder {

public static void main(String[] args) {

    String temp;
    List<String> str= new ArrayList<String>();

    str.add("Apple");
    str.add("zebra");
    str.add("Umberalla");
    str.add("banana");
    str.add("oxo");
    str.add("dakuntla");
    str.add("srikanthdukuntla");
    str.add("Dukuntla");

    for(int i=0;i<str.size();i++){

        for(int j=i+1;j<str.size();j++){

     if(str.get(i).compareTo(str.get(j))<0){

            temp=str.get(i);
            str.set(i, str.get(j));
            str.set(j,temp );   

     }
        }
    }

  System.out.println("List of words in alphabetical order   "+str);

}

}

于 2015-08-16T21:02:08.957 回答
0

最清楚的

vehiclearray.sort(Comparator.comparing(Vehicle::getEmail()));
于 2019-05-17T13:08:56.670 回答