本篇內(nèi)容主要講解“Java8怎么實現(xiàn)通過行為參數(shù)傳遞代碼”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Java8怎么實現(xiàn)通過行為參數(shù)傳遞代碼”吧!
成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供龍井網(wǎng)站建設(shè)、龍井做網(wǎng)站、龍井網(wǎng)站設(shè)計、龍井網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、龍井企業(yè)網(wǎng)站模板建站服務(wù),10余年龍井做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
通過篩選蘋果闡述通過行為參數(shù)傳遞代碼
public static ListfilterGreenApples(List inventory){ List result = new ArrayList<>(); for(Apple apple: inventory){ if("green".equals(apple.getColor())){ result.add(apple); } } return result; }
要是農(nóng)民想要篩選多種顏色:淺綠色、暗紅色、黃色等,這種方法就應(yīng)付不了了。一個良好的原則是在編寫類似的代碼之后,嘗試將其抽象化。
public static ListfilterApplesByColor(List inventory, String color){ List result = new ArrayList<>(); for(Apple apple: inventory){ if(apple.getColor().equals(color)){ result.add(apple); } } return result; }
運(yùn)用
ListgreenApples = filterApplesByColor(inventory, "green"); List redApples = filterApplesByColor(inventory, "red");
“要是能區(qū)分輕的蘋果和重的蘋果就太好了。重的蘋果一般是重量大于150克。”
public static ListfilterApplesByWeight(List inventory, int weight){ List result = new ArrayList<>(); for(Apple apple: inventory){ if(apple.getWeight() > weight){ result.add(apple); } } return result; }
發(fā)現(xiàn)有重復(fù)代碼,打破DRY(Don't Repeat Yourself)原則
public static ListfilterApples(List inventory, int weight, String color, boolean flag){ List result = new ArrayList (); for (Apple apple: inventory){ if ( (flag && apple.getColor().equals(color)) || (!flag && apple.getWeight() > weight) ){ result.add(apple); } } return result; }
你可以這么用(但真的很笨拙)
ListgreenApples = filterApples(inventory, "green", 0, true); List heavyApples = filterApples(inventory, "", 150, false);
定義一個接口來對選擇標(biāo)準(zhǔn)建模:
interface ApplePredicate{ public boolean test(Apple a); }
現(xiàn)在你就可以用ApplePredicate的多個實現(xiàn)代表不同的選擇標(biāo)準(zhǔn)了
public class AppleWeightPredicate implements ApplePredicate{ public boolean test(Apple apple){ return apple.getWeight() > 150; } } public class AppleColorPredicate implements ApplePredicate{ public boolean test(Apple apple){ return "green".equals(apple.getColor()); } }
這里有 策略模式的影子
策略模式:定義一系列的算法,把它們一個個封裝起來, 并且使它們可相互替換。
該怎么利用ApplePredicate的不同實現(xiàn)呢?你需要filterApples方法接受ApplePredicate對象,對Apple做條件測試。這就是行為參數(shù)化:讓方法接受多種行為(或戰(zhàn)略)作為參數(shù),并在內(nèi)部使用,來完成不同的行為。
public static Listfilter(List inventory, ApplePredicate p){ List result = new ArrayList<>(); for(Apple apple : inventory){ if(p.test(apple)){ result.add(apple); } } return result; }
public class AppleRedAndHeavyPredicate implements ApplePredicate{ public boolean test(Apple apple){ return "red".equals(apple.getColor()) && apple.getWeight() > 150; } } ListredAndHeavyApples = filter(inventory, new AppleRedAndHeavyPredicate());
filterApples方法的行為取決于你通過ApplePredicate對象傳遞的代碼。換句話說,你把filterApples方法的行為參數(shù)化了!
行為參數(shù)化的好處在于你可以把迭代要篩選的集合的邏輯與對集合中每個元素應(yīng)用的行為區(qū)分開來。這樣你可以重復(fù)使用同一個方法,給它不同的行為來達(dá)到不同的目的。
編寫靈活的prettyPrintApple方法
編寫一個prettyPrintApple方法,它接受一個Apple的List,并可以對它參數(shù)化,以多種方式根據(jù)蘋果生成一個String輸出
public static void prettyPrintApple(Listinventory, ???){ for(Apple apple: inventory) { String output = ???.???(apple); System.out.println(output); } }
首先
public interface AppleFormatter{ String accept(Apple a); }
然后
public class AppleFancyFormatter implements AppleFormatter{ public String accept(Apple apple){ String characteristic = apple.getWeight() > 150 ? "heavy" : "light"; return "A " + characteristic + " " + apple.getColor() +" apple"; } } public class AppleSimpleFormatter implements AppleFormatter{ public String accept(Apple apple){ return "An apple of " + apple.getWeight() + "g"; } }
最后
public static void prettyPrintApple(Listinventory, AppleFormatter formatter){ for(Apple apple: inventory){ String output = formatter.accept(apple); System.out.println(output); } }
運(yùn)用
prettyPrintApple(inventory, new AppleFancyFormatter()); prettyPrintApple(inventory, new AppleSimpleFormatter());
輸出
A light green apple A heavy red apple …
An apple of 80g An apple of 155g …
人們都不愿意用那些很麻煩的功能或概念。目前,當(dāng)要把新的行為傳遞給filterApples方法的時候,你不得不聲明好幾個實現(xiàn)ApplePredicate接口的類,然后實例化好幾個只會提到一次的ApplePredicate對象。這真是很啰嗦,很費(fèi)時間!
匿名類和你熟悉的Java局部類(塊中定義的類)差不多,但匿名類沒有名字。它允許你同時聲明并實例化一個類。換句話說,它允許你隨用隨建。
ListredApples = filterApples(inventory, new ApplePredicate() { public boolean test(Apple apple){ return "red".equals(apple.getColor()); } });
但匿名類還是不夠好。第一,它往往很笨重,因為它占用了很多空間。第二,很多程序員覺得它用起來很讓人費(fèi)解。
鼓勵程序員使用行為參數(shù)化模式,通過引入Lambda表達(dá)式——一種更簡潔的傳遞代碼的方式。
Listresult = filterApples(inventory, (Apple apple) -> "red".equals(apple.getColor()));
目前,filterApples方法還只適用于Apple。還可以將List類型抽象化,從而超越你眼前要處理的問題。
public interface Predicate{ boolean test(T t); } public static List filter(List list, Predicate p){ List result = new ArrayList<>(); for(T e: list){ if(p.test(e)){ result.add(e); } } return result; }
ListredApples = filter(inventory, (Apple apple) -> "red".equals(apple.getColor())); List evenNumbers = filter(numbers, (Integer i) -> i % 2 == 0);
// java.util.Comparator public interface Comparator{ public int compare(T o1, T o2); } inventory.sort(new Comparator () { @Override public int compare(Apple o1, Apple o2) { return o1.getWeight().compareTo(o2.getWeight()); } }); inventory.sort((Apple a1, Apple a2) -> a1.getWeight().compareTo(a2.getWeight()));
//行為參數(shù)化 Thread t = new Thread(new Runnable() { @Override public void run() { System.out.println("Hello, World!"); } }); t = new Thread(()->System.out.println("Hello, World!")) ;
Button button = new Button("Send"); button.setOnAction(new EventHandler() { public void handle(ActionEvent event) { label.setText("Sent!!"); } }); //行為參數(shù)化 button.setOnAction((ActionEvent event) -> label.setText("Sent!!"));
到此,相信大家對“Java8怎么實現(xiàn)通過行為參數(shù)傳遞代碼”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!