Java 通过forEach lambda表达式及BinaryOperator实现for循环
时间:2022-08-25
1、使用BinaryOperator<Integer>和forEach实现代码
BinaryOperator<Integer> add = (a, b) -> a + b;//lambda a, b : a + b BinaryOperator<Integer> sub = (a, b) -> a - b;//lambda a, b : a - b // 创建一个新的Map,接受符号和相应的BinaryOperator // 相当于 = {"+" : lambda a, b : a + b, "-" : lambda a, b : a - b} Map<String, BinaryOperator<Integer>> signs = Map.of("+", add, "-", sub); int a = 5; // a = 5 int b = 3; // b = 3 //循环遍历map并应用操作 signs.values().forEach(v -> System.out.println(v.apply(a, b)));
输出结果:
8 2
注意:Map.of("+", add, "-", sub);
用的是Java 10,如果Java 9+可以使用下面代码:
Map<String, BinaryOperator<Integer>> signs = new HashMap<>();
signs.put("+", add);
signs.put("-", sub);
2、代码优化
更好使用IntBinaryOperator
来避免装箱,可以使用下面写法的代码:
// signs = {"+" : lambda a, b : a + b, "-" : lambda a, b : a - b} Map<String, IntBinaryOperator> signs = Map.of("+", (a, b) -> a + b, "-", (a, b) -> a - b); int a = 5; // a = 5 int b = 3; // b = 3 // for i in signs.keys(): print(signs[i](a,b)) signs.values().forEach(v -> System.out.println(v.applyAsInt(a, b)));
特别声明:本站部分内容收集于互联网是出于更直观传递信息的目的。该内容版权归原作者所有,并不代表本站赞同其观点和对其真实性负责。如该内容涉及任何第三方合法权利,请及时与824310991@qq.com联系,我们会及时反馈并处理完毕。