作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有参数名称、代码、数量和有效期的对象项目。在我从数据 (.csv) 创建 arrayList 并获得重复项的排序列表之后。
Item name Apples, code 5649.0, quantity 1, exp date 2019-07-03.
Item name Oranges, code 124123.0, quantity 3, exp date 2019-12-04.
Item name Oranges, code 124123.0, quantity 4, exp date 2019-12-04.
Item name Peach, code 946598.0, quantity 1, exp date 2017-11-10.
Item name Tomatoes, code 6.5987989764689741E17, quantity 2, exp date 2019-06-20.
对象项具有这些属性
private String name;
private double code;
private int quantity;
private String expDate;
现在我需要删除重复项,但如果名称、过期日期和代码相同,则对数量求和(例如,将 Oranges 留一行,但将数量更改为总共 7 个)。
我想过类似的事情,但不知道在循环中写什么。
for(Item a : itemsNeed) {
for(int b=1; b<itemsNeed.size(); b++) {
if(a.getCode()==itemsNeed.get(b).getCode() && a.getExpDate().equals(itemsNeed.get(b).getExpDate())) {
}
}
这就是我正在考虑的问题,但不知道该往哪里前进。这是对的吗?或者有其他更简单的解决方案吗?
最佳答案
使用适当的键复合结构并创建一个映射器函数 - 然后将其提供给下游具有 summingInt
的 groupingBy
流收集器,并重新创建 Item< 列表
基于收集到的数据的对象
我将使用 Lombok 来展示下面的示例,但基本上我的意思是创建具有适当 HashCode
/Equals
实现的不可变 ItemKey
类并在 Item
类中添加构造函数以从 ItemKey
和计算数量重新创建 Item
对象(这可以通过其他方式实现,例如使用一些工厂方法)
@Data
@AllArgsConstructor
class Item {
private String name;
private double code;
private int quantity;
private String expDate;
public Item(ItemKey key, int quantity) {
this.name = key.getName();
this.code = key.getCode();
this.expDate = key.getExpDate();
this.quantity = quantity;
}
}
@Value
class ItemKey {
private String name;
private double code;
private String expDate;
}
// ...
Function<Item, ItemKey> compositeKey = item -> new ItemKey(item.getName(), item.getCode(), item.getExpDate());
List<Item> filteredAndQuantityAggregated = itemsNeed.stream()
.collect(Collectors.groupingBy(compositeKey, Collectors.summingInt(Item::getQuantity)))
.entrySet()
.stream()
.map(entry -> new Item(entry.getKey(), entry.getValue()))
.collect(Collectors.toList());
关于java - 如何从 arrayList 中删除重复元素但对它们的参数求和?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58735423/
我是一名优秀的程序员,十分优秀!