java8新特性Lambda练习
Posted zhulibin2012
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java8新特性Lambda练习相关的知识,希望对你有一定的参考价值。
练习内容:
1.实现案例
/**
*使用lambda表达式定义Collections.sort()
*/
/** *使用lambda表达式自定义比对方式 */ @Test public void Test4(){ Collections.sort(emps, (e1, e2) -> { if (e1.getAge() == e2.getAge()){ return e1.getName().compareTo(e2.getName()); }else{ return Integer.compare(e1.getAge(), e2.getAge()); } }); for (Employee e: emps) { System.out.println(e); } }
3.实现
以上是关于java8新特性Lambda练习的主要内容,如果未能解决你的问题,请参考以下文章