我有一些 bean 类型(产品)的列表,我需要从我的列表中找到重复的产品,假设我的 bean 产品包含像这样的 getter 和 setter
public class Product {
private int id;
private String name;
private BigDecimal cost;
private int uniqueAssignedId;
public Product(int id, String name, BigDecimal cost, int uniqueAssignedId) {
this.id = id.....
}
public int getId() {
return this.id;
}
//The rest of getters and setters.
我正在尝试将此列表放入地图中以查找重复的“id”值,但它没有像我预期的那样工作,问题是我的列表是已售产品的列表(抱歉冗余)所以每个售出product 具有唯一的 uniqueAssignedId 因此对象总是不同的,假设我的列表填充如下:
listProducts.add(5, "Soda", 1.00, 1);
listProducts.add(3,"Phone", 300.00, 2);
listProducts.add(4, "Cofee", 5.00, 3);
listProducts.add(5, "Soda", 1.00, 4);
listProducts.add(4, "Cofee", 5.00, 5);
listProducts.add(5, "Soda", 1.00, 6);
(我知道我必须创建一个对象 Product product = new Product() 并用 setter 填充它,然后将对象添加到我的列表中,但这更简单)
到目前为止,我已经尝试过:
Set<Product> uniqueId = new HashSet<Product>(listProducts);
for (Product product : uniqueId) {
System.out.println("The product with id "+product.getId+" was repeated: "
+ Collections.frequency(listProducts, product.getId));
}
但它总是迭代 6 次而不是 3 次(3 是我销售的不同产品的数量)。那么我怎样才能让 Hashset 只得到不同的 id 呢?我应该使用地图吗?任何线索将不胜感激。