使用函数式接口

Predicate

@FunctionalInterface
interface Predicate<T>{
boolean test(T t);
} public static <T> List<T> filter(List<T> list,Predicate<T> p){
List<T> ts = new ArrayList<>();
for (T t : list) {
if (p.test(t)) {
ts.add(t);
}
}
return ts;
}

Consumer

@FunctionalInterface
public interface Consumer<T> {
void accept(T t);
} public static <T> void forEach(List<T> list,Consumer<T> c) {
for (T t : list) {
c.accept(t);
}
} public static void main(String[] args) {
forEach(Arrays.asList(1,2,3,4,5),i-> System.out.println(i)); }

Function

@FunctionalInterface
public interface Function<T, R> {
R apply(T t);
} public static <T, R> List<R> map(List<T> list, Function<T, R> f) {
List<R> result = new ArrayList<>();
for (T t : list) {
result.add(f.apply(t));
}
return result;
} public static void main(String[] args) {
List<Integer> map = map(Arrays.asList("lambdas", "in", "action"), s -> s.length());
System.out.println(map);
}

Lambdas及函数式接口的例子

例子        															 对应接口
布尔表达式: (List<String> list) -> list.isEmpty() Predicate<List<String>>
创建对象: () -> new Apple(10) Supplier<Apple>
消费一个对象:(Apple a) ->
System.out.println(a.getWeight()); Consumer<Apple>
从一个对象中选择/提取:(String s )->s.length() Function<String,Integer>或
ToIntFunction<String>
合并两个值:(int a, int b)->a*b IntBinaryOperator
比较两个对象:(Apple a1,Apple a2)-> BiFunction<Apple,Apple,Integeer>
a1.getWeight().compareTo(a2.getWeight()) 或ToIntBiFunction<Apple,Apple>

最新文章

  1. 分布式搜索引擎Elasticsearch性能优化与配置
  2. 生产环境中,数据库升级维护的最佳解决方案flyway
  3. 服务 在初始化安装时发生异常:System.IO.FileNotFoundException: &quot;file:///D:\testService&quot;未能加载文件或程序集。系统找不到指定文件。
  4. JNI在C 和 C++ 函数实现的不同
  5. JavaScript-也来谈--闭包
  6. android调试模拟器启动太慢,怎样才能更快的调试程序呢?
  7. 编写自己的Acunetix WVS漏洞扫描脚本详细教程
  8. 在Python中怎么表达True
  9. 测试rest接口的两个工具使用详解(restclient+soapUI)
  10. rsync 推送
  11. Sping3.0版本+Quartz完成定时任务
  12. loadView 再思考
  13. 探索 Java 热部署
  14. VM克隆centos7虚拟机并配置网络
  15. mysql5.6版本的优化
  16. CodeForces - 589A(二分+贪心)
  17. Windows下安装并启动mongodb
  18. lnmp 安装redis-最全
  19. Unity Shader _Time 的单位
  20. git 生成ssh keys

热门文章

  1. node中websocket的使用
  2. python面试题(二)字符串常用函数
  3. 渐进式web应用开发---service worker (二)
  4. 半小时学会V语言
  5. 第四届蓝桥杯省赛 (JavaB组)
  6. 前端摸爬滚打之路(一)之 JavaScript 基础
  7. HTTP 学习笔记02
  8. HDU XXXX:求[L,R]的素数数量(数位DP)
  9. 跟着大彬读源码 - Redis 3 - 服务器如何响应客户端请求?(下)
  10. 使用docker搭建gitlab服务器