比较两个集合并删除常用项目 [英] Compare two set and remove common items

查看:129
本文介绍了比较两个集合并删除常用项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个包含一些元素作为对象的集合。我想从集合中删除公共元素。如何从集合中删除常用元素?

I have two sets which contain some elements as object. I want to remove common element from the set. How can I remove common elements from set?

Set<AcceptorInventory> updateList = new HashSet<AcceptorInventory>();
Set<AcceptorInventory> saveList = new HashSet<AcceptorInventory>();

两组都有一些项目, saveList 有重复的项目&我希望从 saveList 中删除​​重复的项目。我尝试使用 foreach 循环,但它没有用。

Both sets have some items, the saveList have duplicated items & I wish to remove duplicated items from saveList. I tried with foreach loop, but it did not work.

示例输出:

save 5
save 20
save 50
save 10
update 5
update 10
update 20

AcceptorInventory Hashcode and equals

AcceptorInventory Hashcode and equals

@Override
public int hashCode() {
    final int prime = 31;
    int result = 1;
    result = prime * result + count;
    result = prime * result
            + ((currency == null) ? 0 : currency.hashCode());
    result = prime * result + ((date == null) ? 0 : date.hashCode());
    result = prime * result + (int) (id ^ (id >>> 32));
    result = prime * result + (isCleared ? 1231 : 1237);
    result = prime * result
            + ((kioskMachine == null) ? 0 : kioskMachine.hashCode());
    result = prime * result + ((time == null) ? 0 : time.hashCode());
    long temp;
    temp = Double.doubleToLongBits(total);
    result = prime * result + (int) (temp ^ (temp >>> 32));
    return result;
}

@Override
public boolean equals(Object obj) {
    if (this == obj)
        return true;
    if (obj == null)
        return false;
    if (getClass() != obj.getClass())
        return false;
    AcceptorInventory other = (AcceptorInventory) obj;
    if (count != other.count)
        return false;
    if (currency == null) {
        if (other.currency != null)
            return false;
    } else if (!currency.equals(other.currency))
        return false;
    if (date == null) {
        if (other.date != null)
            return false;
    } else if (!date.equals(other.date))
        return false;
    if (id != other.id)
        return false;
    if (isCleared != other.isCleared)
        return false;
    if (kioskMachine == null) {
        if (other.kioskMachine != null)
            return false;
    } else if (!kioskMachine.equals(other.kioskMachine))
        return false;
    if (time == null) {
        if (other.time != null)
            return false;
    } else if (!time.equals(other.time))
        return false;
    if (Double.doubleToLongBits(total) != Double
            .doubleToLongBits(other.total))
        return false;
    return true;
}


推荐答案

您可以从中删除常用项目当前的saveList使用

You can remove common items from current saveList using

saveList.removeAll(updateList);

这篇关于比较两个集合并删除常用项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆