java中lambda(函數式編程)一行解決foreach循環問題
java lambda(函數式編程)一行解決foreach循環
首先給大傢推薦《精通lambda表達式:java多核編程》
這本書詳細介紹瞭lambda表達式從入門到理解、應用
下面介紹用以前的循環方式進行對比,來更加清晰地java函數式編程中foreach的用法
一、以前我們使用的for循環
/** * for循環 */ @Test public void forTest() { // 實例化一個List List<Point> points = Arrays.asList(new Point(1, 2), new Point(2, 3)); System.out.println("循環操作前:" + points); // for循環 for (int i = 0; i < points.size(); i++) { points.get(i).translate(1, 1); } System.out.println("循環操作後:" + points); }
二、後來使用foreach循環(感覺爽多瞭)
/** * foreach循環 */ @Test public void forEachTest() { List<Point> points = Arrays.asList(new Point(1, 2), new Point(2, 3)); System.out.println("循環操作前:" + points); // foreach 循環 for (Point p : points) { p.translate(1, 1); } System.out.println("循環操作後:" + points); }
三、而大傢可能很少瞭解ArrayList中的forEach方法
下面便是一個實例
/** * 調用ArrayList中foreach方法循環 */ @Test public void forEachMethodTest() { List<Point> points = Arrays.asList(new Point(1, 2), new Point(2, 3)); System.out.println("循環操作前:" + points); /** * 此foreach為ArrayList中的方法 * 接收的參數為Consumer接口 */ points.forEach(new Consumer<Point>() { public void accept(Point t) { t.translate(1, 1); } }); System.out.println("循環操作後:" + points); }
ArrayList中的forEach方法源碼實現
/** * ArrayList中的foreach方法 * this為當前集合對象 * Consumer接口裡面的accept方法是對集合中對象所做的操作 * 底層依然是foreach循環實現的 */ default void forEach(Consumer<? super T> action) { Objects.requireNonNull(action); for (T t : this) { action.accept(t); } }
四、最後,逼格最高,寫法最簡潔,用起來最爽的函數式寫法
/** * lambdaForeach循環 */ @Test public void lambdaForEachTest() { List<Point> points = Arrays.asList(new Point(1, 2), new Point(2, 3)); System.out.println("循環操作前:" + points); /** * 僅此一行就夠瞭 * p -> p.translate(1, 1) * points集合的泛型為Point,裡面存儲的是Point對象 * p即Point對象,箭頭後面的即對此對象所做的操作,當然這個p可以隨便命名 * 比如Long類型的number: num -> sb.append(num + ","); * 場景是將一個id集合,使用StringBuilder拼接成逗號分隔的字符串 */ points.forEach(p -> p.translate(1, 1)); System.out.println("循環操作後:" + points); }
四種方式的執行結果:
循環操作前:[java.awt.Point[x=1,y=2], java.awt.Point[x=2,y=3]]
循環操作後:[java.awt.Point[x=2,y=3], java.awt.Point[x=3,y=4]]
java Lambda 與forEach
lambda表達式
λ表達式本質上是一個匿名方法。
public int add(int x, int y) { return x + y; }
轉成λ表達式後是這個樣子:
(x, y) -> x + y; //返回兩數之和
1、普通方式遍歷 Map
Map<String, Integer> items = new HashMap<>(); items.put("A", 10); items.put("B", 20); items.put("C", 30); items.put("D", 40); items.put("E", 50); items.put("F", 60); for (Map.Entry<String, Integer> entry : items.entrySet()) { System.out.println("Item : " + entry.getKey() + " Count : " + entry.getValue()); }
2、使用 forEach + lambda 表達式循環 Map
Map<String, Integer> items = new HashMap<>(); items.put("A", 10); items.put("B", 20); items.put("C", 30); items.put("D", 40); items.put("E", 50); items.put("F", 60); items.forEach((k,v)->System.out.println("Item : " + k + " Count : " + v)); items.forEach((k,v)->{ System.out.println("Item : " + k + " Count : " + v); if("E".equals(k)){ System.out.println("Hello E"); } });
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- Java中forEach使用lambda表達式,數組和集合的區別說明
- Java8中forEach語句循環一個List和Map
- Java中Lambda表達式用法介紹
- 深入淺出理解Java Lambda表達式之四大核心函數式的用法與范例
- 一篇文章帶你瞭解Java Stream流