List<String> list = new ArrayList<>();

        //list.stream().filter((String s)->System.out.print(s);return s);
String str="sadfasdf";
//str.length()
Function<String,Integer> func1= (s1)->s1.length();
Function<String,Integer> func2= String::length;
Function<String,Integer> func3= (s1)->str.length();
Supplier<Integer> func4= str::length;

最新文章

  1. 我喜欢的Notepad++插件
  2. JAVA基础(一)
  3. OpenCV阶段总结扩充。
  4. 忧桑三角形,调了半天,真忧桑TAT
  5. Redis学习笔记(1) Redis介绍及基础
  6. SilverIight数据绑定实例
  7. C#使用Fixed创建固定大小的缓冲区
  8. wcf调用oracle存储过程
  9. php spl
  10. [转]Valgrind简单用法
  11. Angular实现数据绑定,它实现原理是什么?
  12. nginx 采用https 协议通信配置
  13. Linux软件大全
  14. Gitblit配置
  15. Numpy数组对象的操作-索引机制、切片和迭代方法
  16. python_如何让类支持比较运算?
  17. 新ubuntu系统装软件
  18. python的random模块(生成验证码)
  19. java1.8 新特性(五 如何使用filter,limit ,skip ,distinct map flatmap ,collect 操作 java集合)
  20. C++ 表示一个区间值得方法

热门文章

  1. 基于 EntityFramework 的数据库主从读写分离架构(1) - 原理概述和基本功能实现
  2. 为什么有时候在Windbg中下断点下不了呢??
  3. rpm遇到的坑-与VMP冲突
  4. mybatis 获得一个map的返回集合
  5. ZendStudio 代码调试
  6. URAL 1104 Don’t Ask Woman about Her Age(数论)
  7. CSS概念 - 可视化格式模型(二) 定位概述(普通流、绝对定位)
  8. HackThree
  9. angular Docheck
  10. Android 学习笔记 文本文件的读写操作