关于 stream( ) 或 forEach() 为什么不能用如continue和break,如何替代

Posted 石头StoneWang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于 stream( ) 或 forEach() 为什么不能用如continue和break,如何替代相关的知识,希望对你有一定的参考价值。

关于 stream( ) 或 forEach() 为什么不能用如continue和break,如何替代

结论:使用不了continue和break,会编译失败。在forEach里头使用return就相当于continue。

那有人会问,怎么break呢?

背景

比如

// 用 forEach 替代
arrayList.forEach(x ->  
    if (x.equals("8")) 
        //continue; // 不支持,提示 Continue outside of loop
        //break;// 不支持,提示 Break outside switch or loop
        return;// 其实 return 就是相当于传统的for循环的continue
    
    System.out.println("处理其他业务逻辑--->" + x);
);

补充

// 这种写法是有问题,contain为true也不会退出,即使找到了匹配的也会继续遍历,效率低
arrayList.forEach(x ->  
    boolean contain = false;
    if (x.equals("8")) 
        return;
    

    if (contain) 
        System.out.println("contain");
        return;
    

    System.out.println(x);
);


// 正确的写法是(类似的写法)
boolean contain = arrayList.stream().anyMatch(x -> "8".equals(x));
String s = arrayList.stream().filter(x -> "8".equals(x)).findFirst().orElse(null);

以上是关于关于 stream( ) 或 forEach() 为什么不能用如continue和break,如何替代的主要内容,如果未能解决你的问题,请参考以下文章

关于java stream流中的peek方法和foreach的自我理解:

Java8,stream().map().collect(Collectors.toList()).forEach()和stream().map().forEach()有什么区别?

JDK8新特性之stream

Stream.sorted().forEach() 是不是按预期工作? [复制]

解析Stream foreach源码

stream中forEach和forEachOrdered使用和区别