Java8 流 使用 if 子句进行多个 for 循环处理

发布于 2025-01-09 09:05:22 字数 572 浏览 0 评论 0原文

我是 Java 8 的新手,我想使用 java 8 中的 if 子句处理多个 for 循环,以根据另一个对象更新一个对象的列表。

下面是使用 java for every 循环的代码。如何将其转换为基于 java 8 流?

for (MonthlyData monthly : MonthlyDataList) {
    for (MonthlyTsData mts : MonthlyTsDataList {
        if (monthly.getMasterId() == mts.getMasterId() 
            && monthly.getMasterSector() == mts.getMasterSector()
        ) {
            mts.setFsName(monthly.getFsName());
            mts.setQsName(monthly.getQsName());
            break;
        }
    }
}

I am new to Java 8 and I want to handle multiple for loop with if clause in java 8 to update list of one objects based on the other.

Below is the code using java for each loop. How this can be converted to java 8 streams based?

for (MonthlyData monthly : MonthlyDataList) {
    for (MonthlyTsData mts : MonthlyTsDataList {
        if (monthly.getMasterId() == mts.getMasterId() 
            && monthly.getMasterSector() == mts.getMasterSector()
        ) {
            mts.setFsName(monthly.getFsName());
            mts.setQsName(monthly.getQsName());
            break;
        }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

刘备忘录 2025-01-16 09:05:22

Stream API 可用于此任务,并且以下解决方案是可能的,但它只是基于循环的版本的更详细的模仿:

MonthlyDataList.stream()
    .forEach(monthly -> {
        MonthlyTsDataList.stream()
            .filter(mts -> monthly.getMasterId() == mts.getMasterId()
                && monthly.getMasterSector() == mts.getMasterSector()
            )
            .findFirst()  // Optional<MonthlyTsData>
            .ifPresent(mts -> {
                    mts.setFsName(monthly.getFsName());
                    mts.setQsName(monthly.getQsName());
            });
    });

Stream API may be used for this task and the following solution is possible but it would be just a more verbose mimic of the loop-based version:

MonthlyDataList.stream()
    .forEach(monthly -> {
        MonthlyTsDataList.stream()
            .filter(mts -> monthly.getMasterId() == mts.getMasterId()
                && monthly.getMasterSector() == mts.getMasterSector()
            )
            .findFirst()  // Optional<MonthlyTsData>
            .ifPresent(mts -> {
                    mts.setFsName(monthly.getFsName());
                    mts.setQsName(monthly.getQsName());
            });
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文