我有以下问题:
目标:我想要“City”的所有示例,这些示例具有基于“name”的重复项。
限制:我需要使用流。
错误:没有错误。
描述:
我有一个类“City”的示例列表。目标是使用stream创建一个列表,其中包含基于“name”找到的所有重复项,而不仅仅是一个。
我试图研究我的问题的答案,但所有的答案都只解释了如何添加重复一次的元素,而不是两次或三次,如果情况需要的话。
我发现的研究材料:
Java 8, Streams to find the duplicate elements
https://mkyong.com/java8/java-8-find-duplicate-elements-in-a-stream/
再次目标:随着列表显示在下面,一个新的列表,将被创建,以采取在重复,将有内instace的“Lisboa”3x,instace的“Braga”3x和instace的“Guarda”2x,这是因为这些是重复的元素的基础上的名称。
编辑:谢谢大家的回复。当我分析你们的回复时,我可以看到我可能错过了关于目标的一个重要细节。
在你的回答中,我确实可以看到你在把重复的名字逐字地添加到一个列表中。
然而,我的初衷是让所有“City”类型的示例都有重复的名称。
根据答案,我没有访问的属性。
谢谢你。
主要:
public class Main {
public static void main(String[] args) {
List<City> portugalCities = List.of(
new City("Lisboa", "Estremadura", 2275591),
new City("Lisboa", "Estremadura", 2275591),
new City("Faro", "Algarve", 67650),
new City("Braga", "Minho", 193324),
new City("Braga", "Esposende", 193324),
new City("Braga", "Fafe", 193324),
new City("Alentejo", "Ribatejo", 704533),
new City("Viseu", "Beira Alta", 99561),
new City("Lisboa", "Alenquer", 2275591),
new City("Guarda", "Almeida", 143019),
new City("Guarda", "Aguiar da Beira", 143019)
);
}
}
城市:
public class City {
private String name;
private String province;
private int population;
// ----- Properties
public City(String name, String province, int population) {
this.name = name;
this.province = province;
this.population = population;
}
// ----- Constructor
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getProvince() {
return province;
}
public void setProvince(String district) {
this.province = district;
}
public int getPopulation() {
return population;
}
public void setPopulation(int population) {
this.population = population;
}
// ----- Getter & Setters
@Override
public String toString() {
return String.format("|name: %s; district: %s; population: %s|", name, province, population);
}
// ----- toString
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
City city = (City) o;
return population == city.population && Objects.equals(name, city.name) && Objects.equals(province, city.province);
}
@Override
public int hashCode() {
return Objects.hash(name, province, population);
}
// ----- Equals & hashCode
}
3条答案
按热度按时间wxclj1h51#
首先收集名字并计数,然后使用它来筛选出非欺骗者:
然后按你喜欢的方式打印出来:
w8ntj3qf2#
理想情况下,流一次处理一个元素,而不需要存储中间结果。但是在这种情况下,我们需要存储按名称分组的城市,因为我们无法知道哪些是重复的,除非我们处理了所有元素。因此,给定类
City
的定义和问题的数据集,我提出了以下两步过程:可以在一个更好的单链中完成,但仍然有一个中间结果,
citiesByName
。结果包含 * 所有重复项 *(据我所知,这是问题的对象),而不仅仅是计数。
rta7y2nd3#
您可能希望使用自定义收集器来实现这一点,这与https://mdn.io/Array.reduce不同:
此示例生成输出: