摘要:首先,我们将定义方法与对象中的方法完全相同返回值现在,我们来看看如何使用看下单元测试内部的进行排序我们还可以通过使用引用和方法组合进行排序比较。
简介
在本教程中,我们将首先了解Java 8中的Lambda支持,特别是如何利用它来编写Comparator并对Collection进行排序。
首先,让我们定义一个简单的实体类:
public class Human { private String name; private int age; }List的简单排序
在Java 8之前,对集合进行排序将涉及为排序中使用的Comparator创建匿名内部类:
new Comparator() { @Override public int compare(Human h1, Human h2) { return h1.getName().compareTo(h2.getName()); } }
这个比较简单,我看看单元测试的案例:
@Test public void givenPreLambda() { ListLambda在排序中的使用humans = Lists.newArrayList( new Human("Sarah", 10), new Human("Jack", 12) ); Collections.sort(humans, new Comparator () { @Override public int compare(Human h1, Human h2) { return h1.getName().compareTo(h2.getName()); } }); Assert.assertThat(humans.get(0), equalTo(new Human("Jack", 12))); }
随着Lambdas的引入,我们现在可以绕过匿名内部类,并通过简单,功能的语义实现来得到相同的结果:
(final Human h1, final Human h2) -> h1.getName().compareTo(h2.getName());
同样,还是可以用之前的测试用例:
@Test public void test() { Listhumans = Lists.newArrayList( new Human("Sarah", 10), new Human("Jack", 12) ); humans.sort( (Human h1, Human h2) -> h1.getName().compareTo(h2.getName())); assertThat(humans.get(0), equalTo(new Human("Jack", 12))); }
请注意,我们还使用了添加到Java 8 中的java.util.List的新排序的API,而不是旧的Collections.sort API。
不带类型定义排序我们可以通过不指定类型定义来进一步简化表达式 - 编译器能够自己推断这些:
(h1, h2) -> h1.getName().compareTo(h2.getName())
测试用例如下:
@Test public void test() { Listhumans = Lists.newArrayList( new Human("Sarah", 10), new Human("Jack", 12) ); humans.sort((h1, h2) -> h1.getName().compareTo(h2.getName())); assertThat(humans.get(0), equalTo(new Human("Jack", 12))); }
这个得益于Lambda的方法支持,让我的代码更加简洁。
使用静态方法进行排序接下来,我们将使用Lambda Expression执行排序,并引用静态方法。
首先,我们将定义方法compareByNameThenAge与Comparator
public static int compareByNameThenAge(Human lhs, Human rhs) { if (lhs.name.equals(rhs.name)) { return lhs.age - rhs.age; } else { return lhs.name.compareTo(rhs.name); } }
现在,我们来看看如何使用
humans.sort(Human::compareByNameThenAge);
看下单元测试
@Test public void test() { List内部API的进行排序humans = Lists.newArrayList( new Human("Sarah", 10), new Human("Jack", 12) ); humans.sort(Human::compareByNameThenAge); Assert.assertThat(humans.get(0), equalTo(new Human("Jack", 12))); }
我们还可以通过使用Collections引用和Comparator.comparing方法组合进行排序比较。
我们将使用getName()来构建Lambda表达式并按名称对List进行排序:
@Test public void test() { List反向排序humans = Lists.newArrayList( new Human("Sarah", 10), new Human("Jack", 12) ); Collections.sort( humans, Comparator.comparing(Human::getName)); assertThat(humans.get(0), equalTo(new Human("Jack", 12))); }
Java 8还引入了一个用于反转比较器的辅助方法,我们可以快速使用它来反转我们的排序:
@Test public void test() { List多条件排序humans = Lists.newArrayList( new Human("Sarah", 10), new Human("Jack", 12) ); Comparator comparator = (h1, h2) -> h1.getName().compareTo(h2.getName()); humans.sort(comparator.reversed()); Assert.assertThat(humans.get(0), equalTo(new Human("Sarah", 10))); }
比较lambda表达式不一定非常简单,我们也可以编写更复杂的表达式。例如按照name、age进行排序比较。
@Test public void test() { List多条件组合排序humans = Lists.newArrayList( new Human("Sarah", 12), new Human("Sarah", 10), new Human("Zack", 12) ); humans.sort((lhs, rhs) -> { if (lhs.getName().equals(rhs.getName())) { return lhs.getAge() - rhs.getAge(); } else { return lhs.getName().compareTo(rhs.getName()); } }); Assert.assertThat(humans.get(0), equalTo(new Human("Sarah", 10))); }
相同的例子,我们也可以通过Comparator的新组合支持来实现。
从JDK 8开始,我们现在可以将多个比较器组合在一起,以构建更复杂的比较逻辑:
@Test public void test() { ListStream排序humans = Lists.newArrayList( new Human("Sarah", 12), new Human("Sarah", 10), new Human("Zack", 12) ); humans.sort( Comparator.comparing(Human::getName).thenComparing(Human::getAge) ); Assert.assertThat(humans.get(0), equalTo(new Human("Sarah", 10))); }
我们还可以使用Java 8的Stream sorted() API 对集合进行排序。
我们可以使用自然排序以及比较器提供的排序对stream进行排序。 为此,我们有sorted(),与其对应的有两个API :
sorted();使用排序对Stream的元素进行排序,元素类必须实现Comparable接口
sorted(Comparator super T> comparator);根据Comparator实例对元素进行排序
让我们看一个如何使用自然排序的sorted()方法的示例:
@Test public final void test() { Listletters = Lists.newArrayList("B", "A", "C"); List sortedLetters = letters.stream().sorted().collect(Collectors.toList()); assertThat(sortedLetters.get(0), equalTo("A")); }
现在让我们看看我们如何使用自定义Comparator与sorted():
@Test public final void test() { Listhumans = Lists.newArrayList(new Human("Sarah", 10), new Human("Jack", 12)); Comparator nameComparator = (h1, h2) -> h1.getName().compareTo(h2.getName()); List sortedHumans = humans.stream().sorted(nameComparator).collect(Collectors.toList()); assertThat(sortedHumans.get(0), equalTo(new Human("Jack", 12))); }
如果我们使用Comparator.comparing()方法,我们可以进一步简化上面的例子:
@Test public final void test() { ListStream反向排序humans = Lists.newArrayList(new Human("Sarah", 10), new Human("Jack", 12)); List sortedHumans = humans.stream() .sorted(Comparator.comparing(Human::getName)) .collect(Collectors.toList()); assertThat(sortedHumans.get(0), equalTo(new Human("Jack", 12))); }
我们也可以使用Stream.sorted()来反向排序List。
首先,让我们看一个如何将sorted()方法与Comparator.reverseOrder()组合以反向顺序对列表进行排序的示例:
@Test public final void test() { Listletters = Lists.newArrayList("B", "A", "C"); List reverseSortedLetters = letters.stream() .sorted(Comparator.reverseOrder()) .collect(Collectors.toList()); assertThat(reverseSortedLetters.get(0), equalTo("C")); }
现在,让我们看看如何使用sorted()方法和自定义Comparator:
@Test public final void test() { Listhumans = Lists.newArrayList(new Human("Sarah", 10), new Human("Jack", 12)); Comparator reverseNameComparator = (h1, h2) -> h2.getName().compareTo(h1.getName()); List reverseSortedHumans = humans.stream().sorted(reverseNameComparator) .collect(Collectors.toList()); assertThat(reverseSortedHumans.get(0), equalTo(new Human("Sarah", 10))); }
最后,让我们使用Comparator.comparing()方法简化上面的示例:
@Test public final void test() { List总结humans = Lists.newArrayList(new Human("Sarah", 10), new Human("Jack", 12)); List reverseSortedHumans = humans.stream() .sorted(Comparator.comparing(Human::getName, Comparator.reverseOrder())) .collect(Collectors.toList()); assertThat(reverseSortedHumans.get(0), equalTo(new Human("Sarah", 10))); }
使用Java 8 Lambda表达式对List进行排序,效果是非常不错的,也是Lambda的使用场景之一,这一点展示了Lambda的强大的语义功能。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/77610.html
摘要:表达式还增强了集合库。和前面的示例一样先使用匿名内部类来排序然后再使用表达式精简我们的代码。使用旧的方式代码如下所示使用匿名内部类根据排序使用可以通过下面的代码实现同样的功能使用排序也可以采用如下形式其他的排序如下所示。 本文转自:http://blog.csdn.net/renfufei...转载请注明出处 原文链接: Start Using Java Lambda Expressi...
摘要:从代码上看字典也是在哈希表基础上再抽象了一层而已。在中,哈希表实际上就是数组链表的形式来构建的。后,在哈希冲突时是将新的节点添加到链表的表尾。在对哈希表进行扩展或者收缩操作时,过程并不是一次性地完成的,而是渐进式地完成的。 前言 只有光头才能变强 showImg(https://segmentfault.com/img/remote/1460000016837794); 最近在学Red...
摘要:对于数据结构哈希表我们在上一篇也已经详细说了。键空间示意图的数据库就是使用字典哈希表来作为底层实现的,对数据库的增删改查都是构建在字典哈希表的操作之上的。 前言 只有光头才能变强 今天继续来学习Redis,上一篇从零单排学Redis【青铜】已经将Redis常用的数据结构过了一遍了。如果还没看的同学可以先去看一遍再回来~ 这篇主要讲的内容有: Redis服务器的数据库 Redis对过期...
阅读 2945·2023-04-25 19:20
阅读 790·2021-11-24 09:38
阅读 2046·2021-09-26 09:55
阅读 2432·2021-09-02 15:11
阅读 2026·2019-08-30 15:55
阅读 3612·2019-08-30 15:54
阅读 3149·2019-08-30 14:03
阅读 2964·2019-08-29 17:11