lambda
seanzhang0918
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Lambda Expressions (Method Reference)
Lambda Expressions Reference to a static method @Test(dataProvider = "persons") public void testSortPersons2(Person[] persons) { Arrays.sort(persons, PersonUtil::compareByAge);原创 2017-11-21 19:56:23 · 268 阅读 · 0 评论 -
Lambda Expressions(Sort)
Lambda ExpressionsUse lambda expression to implement sort directly,no need to use new function. @Test(dataProvider = "persons") public void testSortPersons4(Person[] persons) { List<Pers原创 2017-11-22 20:10:11 · 206 阅读 · 0 评论
分享