1、Predicate是布林型函數,只有一個輸入參數。 Predicate介麵包含多種預設方法來處理複雜的邏輯動詞。
Predicate<String> predicate = (s) -> s.length() > 0; predicate.test("foo"); // true predicate.negate().test("foo"); // false Predicate<Boolean> nonNull = Objects::nonNull; Predicate<Boolean> isNull = Objects::isNull; Predicate<String> isEmpty = String::isEmpty; Predicate<String> isNotEmpty = isEmpty.negate();
2、Function介面接收一個參數並傳回單一結果。 預設情況下,多個函數可以串聯在一起。
Function<String, Integer> toInteger = Integer::valueOf; Function<String, String> backToString = toInteger.andThen(String::valueOf); backToString.apply("123"); // "123"
3、Supplier介面產生給定類型的結果。 不像Function,Supplier沒有輸入參數。
Supplier<Person> personSupplier = Person::new; personSupplier.get(); // new Person
以上是java內建函數式介面如何使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!