打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
Java 8速查表

Java 8速查表

分享到:7


本文由 ImportNew - 唐小娟 翻译自 Java8。欢迎加入Java小组。转载请参见文章末尾的要求。

Lambda表达式 —— 用简单的方法实现只有一个函数的接口

Lambda syntax

1
2
3
(parameters) -> expression
(parameters) -> statement
(parameters) -> { statements }

Lambda表达式实例

1
2
3
(int x, int y) -> x + y
() -> System.out.println("hi " + s);
(String s) -> { int n = s.length(); return n; }

运行Runnable

1
2
Runnable r = () -> System.out.println("Hello!");
r.run();

PI函数

1
2
Callable<Double> pi = () -> 3.14;
Double p = pi.call();

根据字符串长度来排序字符串

1
2
3
4
5
String[] words = {"aaa", "b", "cc"};
Arrays.sort(words, (s1, s2) -> s1.length() - s2.length());
 
// 等价于:
Arrays.sort(words, (String s1, String s2) -> s1.length() - s2.length());

高效的final变量可以在lambdas中被引用

1
2
3
4
5
// s是高效的final变量(不会更改)
String s = "foo";
 
// s可以在lambdas中被引用
Runnable r = () -> System.out.println(s);

方法引用 —— 用函数的方法使用现有方法

静态方法引用

1
2
3
4
5
// Class::staticMethod syntax
Arrays.sort(items, Util::compareItems);
 
// 等价于:
Arrays.sort(items, (a, b) -> Util.compareItems(a, b));

实例方法引用

1
2
3
4
5
// instance::instanceMethod syntax
items.forEach(System.out::print);
 
// 等价于:
items.forEach((x) -> System.out.print(x));

对任意实例的方法的引用

1
2
3
4
5
// Class::instanceMethod syntax
items.forEach(Item::publish);
 
// 等价于:
items.forEach((x) -> { x.publish(); });

构造器引用

1
2
ConstructorReference cref = Item::new;
Item item = cref.constructor();

Default方法 —— 接口的方法进行默认的实现

在接口中定义默认的default方法

1
2
3
4
5
6
7
interface Descriptive {
 
  default String desc() {
    return "fantastic";
  }
 
}

实现包含default方法的接口

1
2
3
4
5
6
class Item implements Descriptive { }
 
Item x = new Item();
 
// prints "fantastic"
System.out.println(x.desc());

Stream – 值的序列

对非空字符进行计数

1
2
List<String> strings = ...;
long n = strings.stream().filter(x -> !x.isEmpty()).count();

连接元素的title

1
2
List<Item> items = ...;
String names = items.stream().map((x) -> x.getTitle()).collect(Collectors.joining(", "));

由‘城市’列表获得唯一的‘国家’列表

1
2
List<City> cities = ...;
List<Country> countries = cities.stream().map((c) -> c.getCountry()).distinct().collect(Collectors.toList());

获得元素rating的计数、最小值、最大值、总数、平均值等统计数据

1
2
List<Item> items = ...;
IntSummaryStatistics stats = items.stream().mapToInt((x) -> x.getRating()).summaryStatistics();
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
Java8新特性
5个PHP编码小陋习
功能风格:Lambda函数和地图
C# List<T>用法
Scala初学者学习资料:main(String[])
Java8 Lambda表达式教程
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服