我有一个 ArrayList ,其中包含每 n 秒更新一次并具有现有数据总量的data类型的对象。Person为了在表格中显示此数据,我使用了clear()ObservableList 并用于addAll(data)避免 GUI 故障。
我想将 HashSet 用作 Observable Collection,我想知道是否有一种有效的方法可以从 HashSet 更新对象(如果它只是部分相等)。
代码:
class Person {
int id;
String name;
int visits; //this value can be different
@Override
int hashCode() {
//...
}
@Override
boolean equals() {
//...
}
}
class Main {
static void main(String[] args) {
List<Person> data = new ArrayList<>();
data.add(new Person(1, Max, 4);
data.add(new Person(2, Richard, 7);
data.add(new Person(3, Tom, 4);
Set<Person> set = new HashSet<>();
set.addAll(data);
// new Data incoming
// could be the same Person (all 3 variables same)
// could be existing Person but with changed variables (id stays the same)
// could be completely new Person (new id)
}
}
期望的输出:
如果新数据添加了现有的 Person 但变量不同,则 new Person(1, Max, 50); 该位置的索引应删除 Max 并添加新的 Max 50 次访问(可能在同一位置)或更好地将变量访问更改为 50。
如果所有数据都相同(使用 equals() 和 hashCode() 检查):不应添加或删除任何内容
如果 new Person (with new id) 不在 HashSet 中,则应该添加它
这是如何实现的?我尝试使用 2 个 for 循环(这很耗时)并覆盖哈希集,但我不确定该方法。
撒科打诨
翻过高山走不出你
相关分类