我对Java很新,现在我必须创建一些Comparator类。
在这个Stackoverflow页面上,我找到了一些关于使用lambda表达式的非常有用的信息。 How to compare objects by multiple fields
这让我想到了创建这样的Compartor类:
public class WidthComparator implements Comparator{
@Override
public int compare(Object t, Object t1) {
Foto foto1 = (Foto)t;
Foto foto2 = (Foto)t1;
return Comparator.comparing(Foto::getWidth)
.thenComparing(Foto::getHeight)
.thenComparingInt(Foto::getName);
}
}
}
所以当我有一个名为fotosCollection的集合时,我希望能够做到这一点:
fotosCollection.sort(new HoogteComparator());
这显然不起作用,但我怎么能让它起作用呢?
聚苯乙烯。我必须使用Comparator类。
答案 0 :(得分:5)
Comparator.comapring
会返回Comparator
- 您可以直接使用它:
// Define a "constant" comparator
private static final Comparator<Foo> HOOGTE_COMPARATOR =
Comparator.comparing(Foto::getWidth)
.thenComparing(Foto::getHeight)
.thenComparingInt(Foto::getName);
// Use it elsewhere in your code
fotosCollection.sort(HOOGTE_COMPARATOR);
答案 1 :(得分:2)
如果由于某种原因你真的不希望比较器类型是匿名的,你可以这样做:
public class WidthComparator implements Comparator<Foto>{
private final static Comparator<Foto> FOTO_COMPARATOR = Comparator.comparing(Foto::getWidth)
.thenComparing(Foto::getHeight)
.thenComparingInt(Foto::getName);
@Override
public int compare(Foto foto1, Foto foto2) {
return FOTO_COMPARATOR.compare(foto1, foto2);
}
}
我也会考虑避免使用rawtype并实现Comparator<Foto>
,就像我上面所做的那样。
答案 2 :(得分:1)
您可以尝试这种旧式方法:
public class WidthComparator implements Comparator{
@Override
public int compare(Object t, Object t1) {
Foto foto1 = (Foto)t;
Foto foto2 = (Foto)t1;
// width asc order
if(foto1.getWidth() != foto2.getWidth())
return foto1.getWidth() - foto2.getWidth();
// height asc order
if(foto1.getHeight() != foto2.getHeight())
return foto1.getHeight() - foto2.getHeight();
// name asc order
return foto1.getName().compareTo(foto2.getName());
}
}