Java 常用函数式接口 —— Supplier接口
生活随笔
收集整理的這篇文章主要介紹了
Java 常用函数式接口 —— Supplier接口
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
JDK提供了大量常用的函數式接口以豐富Lambda的典型使用場景,它們主要在 java.util.function 包中被提供。 下面是最簡單的Supplier接口及使用示例。
Supplier接口概述
// Supplier接口源碼
@FunctionalInterface
public interface Supplier<T> {
/**
* Gets a result.
*
* @return a result
*/
T get();
}
java.util.function.Supplier<T> 接口僅包含一個無參的方法: T get() 。用來獲取一個泛型參數指定類型的對象數據。由于這是一個函數式接口,這也就意味著對應的Lambda表達式需要“對外提供”一個符合泛型類型的對象數據。如:
import java.util.function.Supplier;
public class Demo01Supplier {
public static void main(String[] args) {
String msgA = "Hello ";
String msgB = "World ";
System.out.println(
getString(
() -> msgA + msgB
)
);
}
private static String getString(Supplier<String> stringSupplier) {
return stringSupplier.get();
}
}
控制臺輸出:
Hello World
練習:求數組元素最大值
使用 Supplier 接口作為方法參數類型,通過Lambda表達式求出int數組中的最大值。接口的泛型使用 java.lang.Integer 類。
import java.util.function.Supplier;
public class DemoNumberMax {
public static void main(String[] args) {
int[] numbers = {100, 200, 300, 400, 500, -600, -700, -800, -900, -1000};
int numberMax = arrayMax(
() -> {
int max = numbers[0];
for (int number : numbers) {
if (max < number) {
max = number;
}
}
return max;
}
);
System.out.println("數組中的最大值為:" + numberMax);
}
/**
* 獲取一個泛型參數指定類型的對象數據
* @param integerSupplier 方法的參數為Supplier,泛型使用Integer
* @return 指定類型的對象數據
*/
public static Integer arrayMax(Supplier<Integer> integerSupplier) {
return integerSupplier.get();
}
}
控制臺輸出:
數組中的最大值為:500
總結
以上是生活随笔為你收集整理的Java 常用函数式接口 —— Supplier接口的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 功能测试小结(一)
- 下一篇: 微信公众号开发中的用户账号绑定