Lambda表達式 Lambda表達式,也可以稱為閉包,是Java 8發佈的最重要新特性 Lambda允許把函數作為一個方法的參數(函數作為參數傳遞進方法中) 使用Lambda表達式可以使代碼變的更加簡潔緊湊 語法: (parameter) -> expression (parameter) -> ...
Lambda表達式
Lambda表達式
,也可以稱為閉包,是Java 8發佈的最重要新特性
- Lambda允許把函數作為一個方法的參數(函數作為參數傳遞進方法中)
- 使用Lambda表達式可以使代碼變的更加簡潔緊湊
- 語法:
(parameter) -> expression
(parameter) -> { statement; }
- parameter: 參數列表,如果只有一個參數,可以省略括弧,如果沒有參數,也需要使用括弧;
- expression 或 { statement; } 是Lambda表達式的主體
我們可以舉一個簡單的例子
public class Main {
public static void main(String[] args) {
// Lambda表達式計算兩數之和
MathOperation addition = (a, b) -> a + b;
MathOperation addition2 = (a, b) -> a + b;
MathOperation addition3 = (a, b) -> a*b;
System.out.println(addition.operate(5,3));
System.out.println(addition2.operate(5,3));
System.out.println(addition3.operate(5,3));
}
}
interface MathOperation{
int operate(int a, int b);
}
在上面的例子中,MathOperation
是一個函數式介面,它包含一個抽象方法 operation,Lambda 表達式(a, b) -> a + b
實現了這個抽象方法,表示對兩個參數進行相加操作。
所以,Lambda表達式可以用來實現介面的方法,但是只可以實現一種方法,一種以上如下圖
MathOperation operation = (a, b) -> {
return a / b;
};
MathOperation operation = (a, b) -> {
return a * b + 10;
};
重要特征
簡潔性
Lambda 表達式提供了一種更為簡潔的語法,尤其適用於函數式介面。相比於傳統的匿名內部類,Lambda 表達式使得代碼更為緊湊,減少了樣板代碼的編寫。
@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();
}
public class Main {
public static void main(String[] args) {
//使用匿名內部類
Runnable runnable1 = new Runnable() {
@Override
public void run() {
System.out.println("Hello World!");
}
};
runnable1.run();
// 使用 Lambda 表達式
Runnable runnable2 = () -> System.out.println("Hello World!");
runnable2.run();
}
}
函數式編程支持
Lambda 表達式是函數式編程的一種體現,它允許將函數當作參數傳遞給方法,或者將函數作為返回值,這種支持使得 Java 在函數式編程方面更為靈活,能夠更好地處理集合操作、並行計算等任務
List<String> names = Arrays.asList("Alice","Bob","Cuiweiyang");
names.forEach(name -> System.out.println(name));
實現了一下介面
變數捕獲
Lambda 表達式可以訪問外部作用域的變數,這種特性稱為變數捕獲,Lambda 表達式可以隱式地捕獲 final 或事實上是 final 的局部變數。
int x = 10;
Function function = a -> System.out.println(a+x);//註意返回值類型
function.oper(5);
interface Function{
void oper(int a);
}
方法引用
Lambda 表達式可以通過方法引用進一步簡化,方法引用允許你直接引用現有類或對象的方法,而不用編寫冗餘的代碼
// 使用方法引用
List<String> names = Arrays.asList("Alice", "Bob", "Charlie");
names.forEach(System.out::println);
可並行性
Lambda 表達式能夠更方便地實現並行操作,通過使用 Stream API 結合 Lambda 表達式,可以更容易地實現並行計算,提高程式性能。
// 使用 Lambda 表達式和 Stream API 進行並行計算
List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5);
int sum =numbers.parallelStream().mapToInt(Integer::intValue).sum();
System.out.println("sum: "+sum);
Lambda 表達式的引入使得 Java 編程更加靈活、簡潔,並推動了函數式編程的發展。
Lambda表達式實例
Lambda 表達式的簡單例子:
// 1. 不需要參數,返回值為 5
() -> 5
// 2. 接收一個參數(數字類型),返回其2倍的值
x -> 2 * x
// 3. 接受2個參數(數字),並返回他們的差值
(x, y) -> x – y
// 4. 接收2個int型整數,返回他們的和
(int x, int y) -> x + y
// 5. 接受一個 string 對象,併在控制台列印,不返回任何值(看起來像是返回void)
(String s) -> System.out.print(s)
可以分析一下一下代碼
public class Java8Tester {
public static void main(String []args){
Java8Tester tester = new Java8Tester();
// 類型聲明
MathOperation addition = (int a, int b) -> a + b;
// 不用類型聲明
MathOperation subtraction = (a, b) -> a - b;
// 大括弧中的返回語句
MathOperation multiplication = (int a, int b) -> { return a * b; };
// 沒有大括弧及返回語句
MathOperation division = (int a, int b) -> a / b;
System.out.println("10 + 5 = " + tester.operate(10, 5, addition));
System.out.println("10 - 5 = " + tester.operate(10, 5, subtraction));
System.out.println("10 x 5 = " + tester.operate(10, 5, multiplication));
System.out.println("10 / 5 = " + tester.operate(10, 5, division));
// 不用括弧
GreetingService greetService1 = message ->
System.out.println("Hello " + message);
// 用括弧
GreetingService greetService2 = (message) ->
System.out.println("Hello " + message);
greetService1.sayMessage("Runoob");
greetService2.sayMessage("Google");
}
interface MathOperation {
int operation(int a, int b);
}
interface GreetingService {
void sayMessage(String message);
}
private int operate(int a, int b, MathOperation mathOperation){
return mathOperation.operation(a, b);
}
}
使用 Lambda 表達式需要註意以下兩點:
- Lambda 表達式主要用來定義行內執行的方法類型介面(例如,一個簡單方法介面)。在上面例子中,我們使用各種類型的 Lambda 表達式來定義 MathOperation 介面的方法,然後我們定義了 operation 的執行。
- Lambda 表達式免去了使用匿名方法的麻煩,並且給予 Java 簡單但是強大的函數化的編程能力。
變數作用域
lambda 表達式只能引用標記了 final 的外層局部變數
,這就是說不能在 lambda 內部修改定義在域外的局部變數,否則會編譯錯誤。
public class Java8Tester {
final static String salutation = "Hello! ";
public static void main(String args[]){
GreetingService greetService1 = message ->
System.out.println(salutation + message);
greetService1.sayMessage("Runoob");
}
interface GreetingService {
void sayMessage(String message);
}
}
$ javac Java8Tester.java
$ java Java8Tester
Hello! Runoob
我們也可以直接在 lambda 表達式中訪問外層的局部變數:
public class Java8Tester {
public static void main(String args[]) {
final int num = 1;
Converter<Integer, String> s = (param) -> System.out.println(String.valueOf(param + num));
s.convert(2); // 輸出結果為 3
}
public interface Converter<T1, T2> {
void convert(int i);
}
}
lambda 表達式的局部變數可以不用聲明為 final,但是必須不可被後面的代碼修改(即隱性的具有 final 的語義)
int num = 1;
Converter<Integer, String> s = (param) -> System.out.println(String.valueOf(param + num));
s.convert(2);
num = 5;
//報錯信息:Local variable num defined in an enclosing scope must be final or effectively final
在 Lambda 表達式當中不允許聲明一個與局部變數同名的參數或者局部變數。
String first = "";
Comparator<String> comparator = (first, second) -> Integer.compare(first.length(), second.length()); //編譯會出錯
本文來自博客園,作者:Yang0710,轉載請註明原文鏈接:https://www.cnblogs.com/cwyYYDS/p/18227844