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

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

Java8之lambda表達(dá)式基本語法

lambda表達(dá)式,即帶有參數(shù)的表達(dá)式,為更清晰地理解lambda表達(dá)式,先看如下例子:

尼金平網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)公司從2013年開始到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)公司。

(1)

class Student{
  private String name;
  private Double score;
  public Student(String name, Double score) {
    this.name = name;
    this.score = score;
  }
  public String getName() {
    return name;
  }
  public Double getScore() {
    return score;
  }
  public void setName(String name) {
    this.name = name;
  }
  public void setScore(Double score) {
    this.score = score;
  }
  @Override
  public String toString() {
    return "{"
        + "\"name\":\"" + name + "\""
        + ", \"score\":\"" + score + "\""
        + "}";
  }
}
@Test
public void test1(){
  List studentList = new ArrayList(){
    {
      add(new Student("stu1",100.0));
      add(new Student("stu2",97.0));
      add(new Student("stu3",96.0));
      add(new Student("stu4",95.0));
    }
  };
  Collections.sort(studentList, new Comparator() {
    @Override
    public int compare(Student o1, Student o2) {
      return Double.compare(o1.getScore(),o2.getScore());
    }
  });
  System.out.println(studentList);
}

(1)中代碼調(diào)用Collections.sort方法對(duì)集合進(jìn)行排序,其中第二個(gè)參數(shù)是一個(gè)類,準(zhǔn)確地說是一個(gè)匿名內(nèi)部類,sort方法調(diào)用內(nèi)部類中的compare方法對(duì)list進(jìn)行位置交換,因?yàn)閖ava中的參數(shù)類型只能是類或者基本數(shù)據(jù)類型,所以雖然傳入的是一個(gè)Comparator類,但是實(shí)際上需要傳遞的僅僅是compare方法,lambda表達(dá)式專門針對(duì)只有一個(gè)方法的接口(即函數(shù)式接口),Comparator就是一個(gè)函數(shù)式接口 

@FunctionalInterface
public interface Comparator {
  int compare(T o1, T o2);
}

@FunctionalInterface的作用就是標(biāo)識(shí)一個(gè)接口為函數(shù)式接口,此時(shí)Comparator里只能有一個(gè)抽象方法。

使用lambda表達(dá)式之后(1)中的代碼改造如下

(2)

public void test1_(){
    List studentList = new ArrayList(){
      {
        add(new Student("stu1",100.0));
        add(new Student("stu2",97.0));
        add(new Student("stu3",96.0));
        add(new Student("stu4",95.0));
      }
    };
    Collections.sort(studentList,(s1,s2)-> Double.compare(s1.getScore(),s2.getScore()));
    System.out.println(studentList);
  }

對(duì)于有多個(gè)參數(shù)的情況,語法:

     1. ambda表達(dá)式的基本格式為(x1,x2)->{表達(dá)式...};

     2. 在上式中,lambda表達(dá)式帶有兩個(gè)參數(shù),因此兩邊的括號(hào)不能省略,而參數(shù)類型可以省略

     3. 如果表達(dá)式只有一行,那么表達(dá)式兩邊的花括號(hào)可以省略

另外一個(gè)常見的例子是新建一個(gè)線程,不使用lambda表達(dá)式的寫法為

(3)

public void testThread(){
    new Thread(new Runnable() {
      @Override
      public void run() {
        System.out.println("hello, i am thread!");
      }
    }).start();
  }

其中Runnable接口也是一個(gè)函數(shù)式接口,源碼如下

@FunctionalInterface
public interface Runnable {
  /**
   * When an object implementing interface Runnable is used
   * to create a thread, starting the thread causes the object's
   * run method to be called in that separately executing
   * thread.
   * 

* The general contract of the method run is that it may * take any action whatsoever. * * @see java.lang.Thread#run() */ public abstract void run(); }

將其轉(zhuǎn)換為lambda表達(dá)式的寫法為

(4)

public void testThread_(){
  new Thread(()-> System.out.println("hello, i am thread!")).start();
}

對(duì)于沒有參數(shù)的情況 ,語法:

     1.參數(shù)的括號(hào)不能省略,如果只有一句的表達(dá)式則可省略花括號(hào)和語句結(jié)尾的分號(hào)

我們構(gòu)造一個(gè)只有一個(gè)參數(shù)的函數(shù)式接口

@FunctionalInterface
public interface MyFunctionalInterface {
  public void single(String msg);
}
/**
 * 需要單個(gè)參數(shù)
 */
public static void testOnePar(MyFunctionalInterface myFunctionalInterface){
  myFunctionalInterface.single("msg");
}
/**
   * 一個(gè)參數(shù),可以省略參數(shù)的括號(hào)
   */
  @Test
  public void testOneParameter(){
    testOnePar(x-> System.out.println(x));
  }

對(duì)于只有一個(gè)參數(shù)的情況 ,語法:

     1.參數(shù)的括號(hào)可以省略

在這里我們?yōu)榱搜菔局挥幸粋€(gè)參數(shù)的情況自己創(chuàng)建了一個(gè)函數(shù)式接口,其實(shí)java8中已經(jīng)為我們提供了很多常見的函數(shù)式接口

常見的有

Function:提供任意一種類型的參數(shù),返回另外一個(gè)任意類型返回值。 R apply(T t);

Consumer:提供任意一種類型的參數(shù),返回空值。 void accept(T t);

Supplier:參數(shù)為空,得到任意一種類型的返回值。T get();

Predicate:提供任意一種類型的參數(shù),返回boolean返回值。boolean test(T t);

因此針對(duì)上面的情況,我們可以直接使用Consumer類,

/**
   * 需要單個(gè)參數(shù)
   */
  public static void testOnePar1(Consumer unaryOperator){
    unaryOperator.accept("msg");
  }

總結(jié)

以上所述是小編給大家介紹的使用Java8之lambda表達(dá)式基本語法,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)創(chuàng)新互聯(lián)網(wǎng)站的支持!


新聞名稱:Java8之lambda表達(dá)式基本語法
本文路徑:http://weahome.cn/article/jgcgsg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部