gpt4 book ai didi

java - 返回不包含在另一个元素中的元素列表 [JAVA/ANDROID]

转载 作者:行者123 更新时间:2023-12-01 21:27:13 25 4
gpt4 key购买 nike

我想保留两个 ArrayList 中的所有不同元素并将它们保存在单独的数组中。我有本地和远程 ArrayList(本地在我的设备上,我通过从本地数据库读取来创建它)。你可以猜到我从我的服务器获得的 Remote 。我想要获取本地和远程之间的所有差异,以便通过 id 从本地列表中删除所有元素(假设远程 lsit 将包含最新数据)。

我的远程列表是这个:

[
{
"userID": 8,
"address": "6 Lamond Place, Aberdeen, AB25 3UT",
"price": 1,
"lastUpdated": "1466437965391",
"id": 175
},
{
"userID": 8,
"address": "26 Meadgrey, Edinburgh, EH4",
"price": 4,
"lastUpdated": "1466438561094",
"id": 176
}
]

我的本​​地列表包含以下数据:

[
Property{id=174, userID=8, address='4', price='3', lastUpdated='1466437959249'},
Property{id=175, userID=8, address='6 Lamond Place, Aberdeen, AB25 3UT', price='1', lastUpdated='1466437965391'},
Property{id=176, userID=8, address='26 Meadgrey, Edinburgh, EH4', price='4', lastUpdated='1466438561094'}
]

这就是我现在正在做的事情:

public void retainAllLocalFromRemote(List<Property> remoteProperties) {
ArrayList<Property> localProperties = getAllPropertyItems();

Log.d(TAG, "Local db size: " + localProperties.size());
Log.d(TAG, "Remote db size: " + remoteProperties.size());

ArrayList<Property> differences = new ArrayList<>();

for(int i = 0; i < localProperties.size(); i ++){

if(remoteProperties.contains(localProperties.get(i))){
Log.d(TAG, "remote contains local property with id: " + localProperties.get(i).getId());
}else {
differences.add(localProperties.get(i));
}

}

Log.d(TAG, "differences list size: " + differences.size());
Log.d(TAG, "differences list : " + differences.toString());
}

这是我当前的日志输出:

Getting all properties from the database...
06-21 09:54:50.965 10585-10585/xdesign.georgi.espc_retrofit D/EspcItemDataSource: Local db size: 3
06-21 09:54:50.965 10585-10585/xdesign.georgi.espc_retrofit D/EspcItemDataSource: Remote db size: 2
06-21 09:54:50.966 10585-10585/xdesign.georgi.espc_retrofit D/EspcItemDataSource: differences list size: 3
06-21 10:00:48.192 10585-10585/xdesign.georgi.espc_retrofit D/EspcItemDataSource: differences list :[
Property{id=174, userID=8, address='4', price='3', lastUpdated='1466437959249'},
Property{id=175, userID=8, address='6 Lamond Place, Aberdeen, AB25 3UT', price='1', lastUpdated='1466437965391'},
Property{id=176, userID=8, address='26 Meadgrey, Edinburgh, EH4', price='4', lastUpdated='1466438561094'}]

显然,存在问题,因为差异列表应该有一定的大小。我做错了什么?

最佳答案

What I am doing wrong?

List.contains() 使用 Object.equals() 来比较项目并查看它们是否在列表中。如果你不实现它,我相信它使用 toString 值或其他东西作为比较项目的后备。这会扰乱你的比较。

目前,循环中的所有项目对于 contains() 来说都为 false,因此它们都被添加到 differences 中。您需要在 class Property 中提供 equals()hashCode() 的自定义实现,以便您可以决定一个对象何时与另一个对象相等以及何时不。

这里看起来很简单

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Property)) return false;
Property prop = (Property) o;
return Objects.equals(id, prop.id);
}

@Override
public int hashCode() {
return Objects.hash(id);
}

通过id进行比较。如果您想通过其他值进行比较,您可以根据需要更改它。

关于java - 返回不包含在另一个元素中的元素列表 [JAVA/ANDROID],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37939947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com