3 回答
TA贡献1804条经验 获得超2个赞
您可以使用noneMatch操作,例如:
List<App1> result = app1List.stream()
.filter(app1 -> app2List.stream()
.noneMatch(app2 -> app2.getDifferentCity().equals(app1.getCity()) &&
app2.getDifferentName().equals(app1.getName())))
.collect(Collectors.toList());
这假设两者的组合name并且在 ingcity时匹配filter。
TA贡献1826条经验 获得超6个赞
您需要override equals在类中使用方法App2:
public class App2{
private String differentName;
private String differentCity;
private String someProperty1;
private String someProperty2;
// getter setter
// constructors
@Override
public boolean equals(Object obj) {
App2 app2 = (App2) obj;
return this.differentName.equals(app2.getDifferentName()) && this.differentCity.equals(app2.getDifferentCity());
}
}
然后您可以像这样在 list1 上使用 Streams:
app1List = app1List.stream()
.filter(a-> !app2List.contains(new App2(a.getName(),a.getCity())))
.collect(Collectors.toList());
输出:
[App1{name='test1', city='city1'}, App1{name='test4', city='city4'}]
TA贡献1829条经验 获得超7个赞
假设您想要匹配名称和城市,您可以创建一个将对象映射到key的函数,例如:
public static Integer key(String name, String differentCity) {
return Objects.hash(name, differentCity);
}
然后使用该键创建一组键,以便使用noneMatch进行过滤,例如:
Set<Integer> sieve = app2List.stream()
.map(app2 -> key(app2.differentName, app2.differentCity)).collect(Collectors.toSet());
List<App1> result = app1List.stream().filter(app1 -> sieve.stream()
.noneMatch(i -> i.equals(key(app1.name, app1.city))))
.collect(Collectors.toList());
System.out.println(result);
输出
[App1{name='test1', city='city1'}, App1{name='test4', city='city4'}]
这种方法的复杂性在于O(n + m)其中n和m是列表的长度。
添加回答
举报