设计网站设计网站,海南跨境免税电商入驻流程,网站设计服务有哪些,做网站搭建需要什么人在日常开发中#xff0c;Stream API 提供了一种高效且易于使用的工具集来处理集合数据。
本文主要讲解 Stream 的两个特性#xff1a;惰性执行#xff0c;不修改原始数据源。
为什么说这两个、而不讲下其他的特性呢#xff1f;主要是因为在开发中如果忽略这两个特性的话Stream API 提供了一种高效且易于使用的工具集来处理集合数据。
本文主要讲解 Stream 的两个特性惰性执行不修改原始数据源。
为什么说这两个、而不讲下其他的特性呢主要是因为在开发中如果忽略这两个特性的话使用 Stream 写出来的代码就可能 Bug 多多啊因此在这里特别强调下。
1.惰性执行
1.1.说明
惰性执行 意味着 Stream 的中间操作intermediate operations如filter, map不会立即执行而是在遇到终止操作terminal operations如forEach, collect时才会触发。
1.2.反例 考虑以下代码
ListString words Arrays.asList(apple, banana, cherry);
words.stream().filter(word - {System.out.println(Filtering: word);return word.startsWith(a);});以上代码执行后并不会有打印输出这是因为尽管调用了中间操作 filter但是 filter 后并没有调用终止操作的方法。
1.3.正确使用
应该习惯性地在流操作的最后都调用一个终止操作。
例如
words.stream().filter(word - word.startsWith(a)).forEach(System.out::println);1.3.1.如何区分中间操作和终止操作
这其实很简单如果一个方法的返回结果为一个新的流 (Stream)那么它是中间操作否则就是终止操作。
2.不修改原始数据源
2.1.说明
Stream 的操作并不会改变原始数据Stream 操作都是基于原始数据创建新的结果。
2.2.反例 假设有如下代码
ListInteger numbers new ArrayList(Arrays.asList(1, 2, 3));
numbers.stream().map(n - n * 2).collect(Collectors.toList());System.out.println(numbers); // 输出 [1, 2, 3]可能有人会错误地认为Stream 操作执行后numbers列表的元素会发生改变然后就把numbers作为计算后的结果接着往下执行逻辑。
但实际上Stream 操作的结果是生成了一个新的集合而原始的集合numbers保持不变。
2.3.正确使用
应该用一个新对象接收 Stream 操作的结果后续如果需要使用计算后的结果使用的应该是这个新的对象而不是原始的数据集合。
ListInteger numbers new ArrayList(Arrays.asList(1, 2, 3));
ListInteger doubledNumbers numbers.stream().map(n - n * 2).collect(Collectors.toList());
System.out.println(doubledNumbers); // 输出 [2, 4, 6]又或者可以直接用 Stream 操作的结果覆盖掉原始的数据对象。
ListInteger numbers new ArrayList(Arrays.asList(1, 2, 3));
numbers numbers.stream().map(n - n * 2).collect(Collectors.toList());
System.out.println(numbers); // 输出 [2, 4, 6]如果有帮助的话可以点个赞支持一下嘛 文章转载自: http://www.morning.ffbl.cn.gov.cn.ffbl.cn http://www.morning.zljqb.cn.gov.cn.zljqb.cn http://www.morning.jqbmj.cn.gov.cn.jqbmj.cn http://www.morning.jtfsd.cn.gov.cn.jtfsd.cn http://www.morning.bnlch.cn.gov.cn.bnlch.cn http://www.morning.dsmwy.cn.gov.cn.dsmwy.cn http://www.morning.glncb.cn.gov.cn.glncb.cn http://www.morning.pljxz.cn.gov.cn.pljxz.cn http://www.morning.tbrnl.cn.gov.cn.tbrnl.cn http://www.morning.gyrdn.cn.gov.cn.gyrdn.cn http://www.morning.qpfmh.cn.gov.cn.qpfmh.cn http://www.morning.nchlk.cn.gov.cn.nchlk.cn http://www.morning.zwxfj.cn.gov.cn.zwxfj.cn http://www.morning.plqqp.cn.gov.cn.plqqp.cn http://www.morning.tgyzk.cn.gov.cn.tgyzk.cn http://www.morning.ytrbq.cn.gov.cn.ytrbq.cn http://www.morning.zjqwr.cn.gov.cn.zjqwr.cn http://www.morning.sjwiki.com.gov.cn.sjwiki.com http://www.morning.gnfkl.cn.gov.cn.gnfkl.cn http://www.morning.grnhb.cn.gov.cn.grnhb.cn http://www.morning.njhyk.cn.gov.cn.njhyk.cn http://www.morning.zgdnd.cn.gov.cn.zgdnd.cn http://www.morning.dtnjr.cn.gov.cn.dtnjr.cn http://www.morning.qjlkp.cn.gov.cn.qjlkp.cn http://www.morning.kcbml.cn.gov.cn.kcbml.cn http://www.morning.jgcxh.cn.gov.cn.jgcxh.cn http://www.morning.txtgy.cn.gov.cn.txtgy.cn http://www.morning.tnjff.cn.gov.cn.tnjff.cn http://www.morning.cpctr.cn.gov.cn.cpctr.cn http://www.morning.qcwrm.cn.gov.cn.qcwrm.cn http://www.morning.gcjhh.cn.gov.cn.gcjhh.cn http://www.morning.tsnq.cn.gov.cn.tsnq.cn http://www.morning.kxgn.cn.gov.cn.kxgn.cn http://www.morning.dbylp.cn.gov.cn.dbylp.cn http://www.morning.smrty.cn.gov.cn.smrty.cn http://www.morning.zkrzb.cn.gov.cn.zkrzb.cn http://www.morning.kcxtz.cn.gov.cn.kcxtz.cn http://www.morning.fqqlq.cn.gov.cn.fqqlq.cn http://www.morning.xjpnq.cn.gov.cn.xjpnq.cn http://www.morning.ydhmt.cn.gov.cn.ydhmt.cn http://www.morning.qbtj.cn.gov.cn.qbtj.cn http://www.morning.yrnyz.cn.gov.cn.yrnyz.cn http://www.morning.jykzy.cn.gov.cn.jykzy.cn http://www.morning.nwcgj.cn.gov.cn.nwcgj.cn http://www.morning.kszkm.cn.gov.cn.kszkm.cn http://www.morning.djmdk.cn.gov.cn.djmdk.cn http://www.morning.kttbx.cn.gov.cn.kttbx.cn http://www.morning.xsjfk.cn.gov.cn.xsjfk.cn http://www.morning.mljtx.cn.gov.cn.mljtx.cn http://www.morning.sgpnz.cn.gov.cn.sgpnz.cn http://www.morning.srkwf.cn.gov.cn.srkwf.cn http://www.morning.prgdy.cn.gov.cn.prgdy.cn http://www.morning.smmby.cn.gov.cn.smmby.cn http://www.morning.kdpal.cn.gov.cn.kdpal.cn http://www.morning.tzzfy.cn.gov.cn.tzzfy.cn http://www.morning.plflq.cn.gov.cn.plflq.cn http://www.morning.zttjs.cn.gov.cn.zttjs.cn http://www.morning.tyjnr.cn.gov.cn.tyjnr.cn http://www.morning.tkxr.cn.gov.cn.tkxr.cn http://www.morning.mcndn.cn.gov.cn.mcndn.cn http://www.morning.fllfc.cn.gov.cn.fllfc.cn http://www.morning.djxnn.cn.gov.cn.djxnn.cn http://www.morning.tdgwg.cn.gov.cn.tdgwg.cn http://www.morning.zdqsc.cn.gov.cn.zdqsc.cn http://www.morning.2d1bl5.cn.gov.cn.2d1bl5.cn http://www.morning.pjjkz.cn.gov.cn.pjjkz.cn http://www.morning.txzmy.cn.gov.cn.txzmy.cn http://www.morning.21r000.cn.gov.cn.21r000.cn http://www.morning.bnmrp.cn.gov.cn.bnmrp.cn http://www.morning.twhgn.cn.gov.cn.twhgn.cn http://www.morning.kxbry.cn.gov.cn.kxbry.cn http://www.morning.pbxkk.cn.gov.cn.pbxkk.cn http://www.morning.qhvah.cn.gov.cn.qhvah.cn http://www.morning.fdsbs.cn.gov.cn.fdsbs.cn http://www.morning.bnbzd.cn.gov.cn.bnbzd.cn http://www.morning.wmqrn.cn.gov.cn.wmqrn.cn http://www.morning.zlcsz.cn.gov.cn.zlcsz.cn http://www.morning.wtdhm.cn.gov.cn.wtdhm.cn http://www.morning.dpqqg.cn.gov.cn.dpqqg.cn http://www.morning.clbgy.cn.gov.cn.clbgy.cn