我需要使用带有map和lambda表达式作为参数的sorted方法按值对值进行排序,而map的结构如下:
Map<T,List<T>>=
Groovy = [Z, Y, X, D]
Java = [V, B, C, D, A, Z]
C++ = [G, J, H]
C# = [P, S, Q, V, D]
Scala = [A, D]
我的排序方法:
sorted(Map<T,List<T>> map,Comparator<Map<T,List<T>>> comp)
然后在另一个负责从文件中读取数据并将其放入映射的函数中实现它。这是我的排序方法:
public Map<T,List<T>> sorted(Map<T,List<T>> map, Comparator<Map<T,List<T>>> comp){
List list = new LinkedList(map.entrySet());
Collections.sort(list, comp);
HashMap sortedHashMap = new LinkedHashMap();
for (Iterator it = list.iterator(); it.hasNext();) {
Map.Entry entry = (Map.Entry) it.next();
sortedHashMap.put(entry.getKey(), entry.getValue());
}
return sortedHashMap;
}
这就是我在另一种方法中使用它的方法:
Comparator<Map<T,List<T>>> comp = new Comparator() {
public int compare(Object o1, Object o2) {
return ((Comparable) ((Map.Entry) (o1)).getValue())
.compareTo(((Map.Entry) (o2)).getValue());
}};
iniMap=sorted(iniMap,comp);
当我运行程序时,我收到以下错误:
java.lang.ClassCastException: java.util.LinkedList cannot be cast to java.lang.Comparable
任何帮助都会受到赞赏,我有点卡住了。
答案 0 :(得分:3)
是的,LinkedList
类(以及任何List
/ Collection
子类)未实现Comparable
接口,因此您将在运行时获得异常。
(1)您最好使用T
来考虑自己的比较算法,而不是使用Object
s使用错误的转换:
Comparator<List<T>> comparator = (l1, l2) -> l1.size() - l2.size();
(2)避免使用原始类型,尝试概括所有代码:
HashMap sortedHashMap = new LinkedHashMap();
|
V
HashMap<List<T>, T> map = new LinkedHashMap<>();
(3)将匿名类转换为lambda表达式。
(4)如果你想按值(List<T>
)对地图进行排序,比较器也应该是合适的:
Comparator<Map<T,List<T>>> c
|
V
Comparator<List<T>> c