作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试按键对 HashMap 的链接列表进行排序
<小时/>想要的输出:
[{地址=Astreet,名称=阿伦},{地址=Bstreet,名称=伯尼},{地址=Cstreet,名称=卡罗尔}]
//Making Contacts
HashMap contact1 = new HashMap();
HashMap contact2 = new HashMap();
HashMap contact3 = new HashMap();
contact1.put("Name", "Bernie");
contact1.put("Addres", "Bstreet");
contact2.put("Name", "Aron");
contact2.put("Addres", "Astreet");
contact3.put("Name", "Carol");
contact3.put("Addres", "Cstreet");
//Making ContactBook
LinkedList contactBook = new LinkedList();
contactBook.add(contact1);
contactBook.add(contact2);
contactBook.add(contact3);
System.out.println(contactBook);
最佳答案
您想要做的是创建一个代表这些条目的 POJO 并将它们存储在列表中。然后您可以根据名称或地址等条件对该列表进行排序。
class Person {
private final String name;
private final String address;
Person(String name, String address) {
this.name = name;
this.address = address;
}
public String getName() {
return name;
}
public String getAddress() {
return address;
}
@Override
public String toString() {
return String.format("name=%s, address=%s", name, address);
}
}
List<Person> people = new ArrayList<>(Arrays.asList(
new Person("Bernie", "Bstreet"),
new Person("Aron", "Astreet"),
new Person("Carol", "Cstreet")
));
List<Person> sortedByName = people.stream()
.sorted(Comparator.comparing(Person::getName))
.collect(Collectors.toList());
List<Person> sortedByAddress = people.stream()
.sorted(Comparator.comparing(Person::getAddress))
.collect(Collectors.toList());
关于java - 如何在 Java 中对键上的映射列表进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60670231/
我是一名优秀的程序员,十分优秀!