我有三个类,即Engine,Wheel和AutoMobile。这些类的内容如下: -
class Engine {
String modelId;
}
class Wheel {
int numSpokes;
}
class AutoMobile {
String make;
String id;
}
我有一个List<Engine>
,一个List<Wheel>
和一个List<Automobile>
我必须迭代并检查特定情况。如果有一个实体满足这个条件,我必须返回true;否则该函数返回false。
功能如下:
Boolean validateInstance(List<Engine> engines, List<Wheel> wheels , List<AutoMobile> autoMobiles) {
for(Engine engine: engines) {
for(Wheel wheel : wheels) {
for(AutoMobile autoMobile : autoMobiles) {
if(autoMobile.getMake().equals(engine.getMakeId()) && autoMobile.getMaxSpokes() == wheel.getNumSpokes() && .... ) {
return true;
}
}
}
}
return false;
}
我到现在为止已经尝试了这个
return engines.stream()
.map(engine -> wheels.stream()
.map(wheel -> autoMobiles.stream()
.anyMatch( autoMobile -> {---The condition---})));
我知道map()不是要使用的正确函数。我不知道如何解决这个问题。我已经浏览了api文档并尝试了forEach()而没有结果。我已经完成了reduce()api,但我不确定如何使用它
我知道地图将一个流转换为另一个流,这不应该完成。任何人都可以建议如何解决这个问题。
答案 0 :(得分:5)
你应该嵌套Stream::anyMatch
:
return engines.stream()
.anyMatch(engine -> wheels.stream()
.anyMatch(wheel -> autoMobiles.stream()
.anyMatch(autoMobile -> /* ---The condition--- */)));
答案 1 :(得分:-1)
你应该使用flatMap,而不是Map。