真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么對Java8中的函數(shù)式接口進行測試

怎么對Java8中的函數(shù)式接口進行測試?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

站在用戶的角度思考問題,與客戶深入溝通,找到右江網(wǎng)站設計與右江網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設計與互聯(lián)網(wǎng)技術結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站設計、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、申請域名、虛擬主機、企業(yè)郵箱。業(yè)務覆蓋右江地區(qū)。

1. 函數(shù)式接口的理解

根據(jù)重構(gòu)的思想,需要把容易變化的模塊進行抽象并封裝起來,從這個點來看,Java8新引入的函數(shù)式接口就是基于這個思想進行設計的。

2. 函數(shù)式接口定義 

2.1 自定義如下

需要FunctionalInterface關鍵字顯示聲明:

@FunctionalInterface
 public interface AppleInterface {
public void test();
 }

2.2 系統(tǒng)預定義

java.util.function.Consumer;
java.util.function.Function;
java.util.function.Predicate;
java.util.function.Supplier;

可以去查看源碼了解具體的細節(jié),這幾個接口包括了常用的一些場景,一般可滿足需要

3. 函數(shù)式接口的使用

函數(shù)式接口一般使用前需要先定義,也可以使用系統(tǒng)預定義的幾個函數(shù)式接口

函數(shù)式接口的使用和使用一個變量沒有區(qū)別,顯示聲明定義,格式如下:

FunctionInterface interface=null;

這里的interface雖然看起來是一個變量,可是實際卻是一段行為代碼,用于執(zhí)行具體的業(yè)務邏輯,可以自由在方法接口間傳遞,也可以直接執(zhí)行

interface.doSomeThing();

如定義函數(shù)式接口為參數(shù)的接口:

public void filter(FunctionInterface interface)
{
 interface.doSomeThing();
}

4. 函數(shù)式接口練習

4.1 自定義實體類Apple

public class Apple {
  private String color;
  private float weight;

  public Apple(String color, float weight) {
  this.color = color;
  this.weight = weight;
  }

  public String getColor() {
  return color;
  }

  public void setColor(String color) {
  this.color = color;
  }

  public float getWeight() {
  return weight;
  }

  public void setWeight(float weight) {
  this.weight = weight;
  }
}

4.2 自定義函數(shù)式接口

該接口有一個test方法,不接收任何參數(shù),也沒有任何返回

@FunctionalInterface
public interface AppleInterface {
  public void test();
}

4.3 測試自定義函數(shù)式接口

 @Test
  public void DefineFunctionInterface(){
  //自定義函數(shù)式接口
  AppleInterface at=()->System.out.println("define FunctionInterface AppleInterface.");
  at.test();
  }

至此,就完成一個很簡單的函數(shù)式接口的定義和調(diào)用

4.4 系統(tǒng)預定義函數(shù)式接口

Consumer:該接口接收一個對象T,返回void,測試如下

 @Test
  public void ConsumerTest(){
  Consumer consumer=(Apple app)->{System.out.println(app.getColor()+","+app.getWeight());};
  List apps=Arrays.asList(new Apple("red", 120),new Apple("blue", 80),
 new Apple("green",100));
  ConsumerApple(apps,consumer);
  }

  public void ConsumerApple(List apps,Consumer c){
  for(Apple app:apps){
 c.accept(app);
  }
  }

Supplier:該接口不接收任何參數(shù),返回一個對象T,測試如下:

 @Test
  public void SupplierTest(){
  Supplier supplier=()->{return new Apple("hello supplier",999);};
  Apple app=supplier.get();
  System.out.println(app.getColor()+","+app.getWeight());
  }

Predicate:該接口接收一個對象T,返回一個Boolean

 @Test
  public void PredicateTest(){
  //系統(tǒng)預定義函數(shù)式接口測試
  Predicate p1=(Apple a)->{if(a.getWeight()>90) return true;return false;};
  Predicate p2=(Apple a)->{if(a.getColor().equals("blue")) return true;return false;};

  List apps=Arrays.asList(new Apple("red", 120),new Apple("blue", 80),
 new Apple("green",100));

  filterApple(apps,p1);//篩選重量大于90g的蘋果
  filterApple(apps,p2);//篩選藍色的蘋果
  }

  public void filterApple(List apps,Predicate p){
  for(Apple app:apps){
 if(p.test(app)){
 System.out.println(app.getColor()+","+app.getWeight());
 }
  }

  }

Function: 該接口接收一個對象T,經(jīng)過轉(zhuǎn)換判斷,返回一個對象R

 @Test
  public void FunctionTest(){
  Function function=(String s)->{return new Apple(s,666);};
  Apple app=function.apply("red");
  System.out.println(app.getColor()+","+app.getWeight());
  app=function.apply("green");
  System.out.println(app.getColor()+","+app.getWeight());

  }

關于怎么對Java8中的函數(shù)式接口進行測試問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關知識。


網(wǎng)站名稱:怎么對Java8中的函數(shù)式接口進行測試
網(wǎng)站鏈接:http://weahome.cn/article/pojhip.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部