1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Update Lambda表达式.md

This commit is contained in:
haiqiang 2019-03-10 22:51:13 +08:00 committed by GitHub
parent 2fa0457b87
commit e929c8ba24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,5 +60,3 @@ public interface Runnable {
- ```Predicate<T> {boolean test(T t);}``` 判断接受一个T对象返回一个布尔值。 - ```Predicate<T> {boolean test(T t);}``` 判断接受一个T对象返回一个布尔值。
- ```Supplier<T> {T get();} 提供者(工厂)``` 返回一个T对象。 - ```Supplier<T> {T get();} 提供者(工厂)``` 返回一个T对象。
- 其他的跟上面的相似大家可以看一下function包下的具体接口。 - 其他的跟上面的相似大家可以看一下function包下的具体接口。
## 4.[方法引用]()