lambda表示式——快速入門

dreamcasher發表於2018-08-06

從jdk1.8開始,引入了lambda,即函數語言程式設計。那麼如和快速入門並使用這種lambda表示式呢?

為了方便函數語言程式設計,jdk中同時引入了函式式介面,其本質也是介面,特點是有且只有一個抽象方法(可能存在其他非抽象方法)。例如:

@FunctionalInterface
public interface Runnable {
    /**
     * When an object implementing interface <code>Runnable</code> is used
     * to create a thread, starting the thread causes the object's
     * <code>run</code> method to be called in that separately executing
     * thread.
     * <p>
     * The general contract of the method <code>run</code> is that it may
     * take any action whatsoever.
     *
     * @see     java.lang.Thread#run()
     */
    public abstract void run();
}

介面上方存在註解@FunctionalInterface,強行約束該介面是一個函式式介面(滿足其特點)。

使用案例:

public class Testlambda {
  public static void main(String[] args) {
    //正常寫法
    /*Thread t = new Thread(new Runnable() {
      @Override
      public void run() {
        System.out.println("Hi!It's easy to use Lambda.");
      }
    })*/
    //Lambda
    Thread t = new Thread(() -> {
      System.out.println("Hi!It's easy to use Lambda.");
    });
    t.start();
  }
}

是不是還蠻簡單的^-^

相關文章