Chapter 3 -- Ordering
explained
Example 例子
assertTrue(byLengthOrdering.reverse().isOrdered(list));
Overview 总览
Ordering is Guava's "fluent" Comparator class, which can be used to build complex comparators and apply them to collections of objects.
Ordering是Guava的"fluent"比较器类, 他可以用来组件复杂的比较器并应用到集合中
At its core, an Ordering instance is nothing more than a special Comparator instance. Ordering simply takes the methods that rely on aComparator (for example, Collections.max) and makes them available as instance methods. For additional power, Ordering class provides chaining methods to tweak and enhance existing comparators.
它的核心内, 一个 Ordering 实例只不过是一个特殊的比较器实例, Ordering简单地让这些方法依赖一个comparator(例如 Collections.max) 并使它们作为实例方法成为可能. 另外,Ordering提供了链式方法调用来调整和提高现有的comparator的能力
Creation 创建
Common orderings are provided by static methods:
通常ordering由以下静态方法提供:
| Method | Description |
| natural() |
Uses the natural ordering on Comparable types. 在可比较的类型上使用natural ordering, 这个方法返回一个NaturalOrdering, 它的比较方法使用了对象默认的compareTo实现 |
| usingToString() |
Compares objects by the lexicographical ordering of their string representations, as returned by toString(). 通过词典编撰的字符串顺序来比较两个object, 使用的是对象的Object.toString().CompareTo()方法来比较 |
Making a preexisting Comparator into an Ordering is as simple as using Ordering.from(Comparator).
使用一个已经存储在的comparator来生成Ordering很简单: Ordering.from(Comparator)
But the more common way to create a custom Ordering is to skip the Comparator entirely in favor of extending the Ordering abstract class directly:
更常用的创建自定义Ordering的方法是为了直接支持继承Ordering完全跳过Comparator:
Ordering<String> byLengthOrdering =new Ordering<String>(){
publicint compare(String left,String right){
returnInts.compare(left.length(), right.length());
}
};
Chaining 链式调用
A given Ordering can be wrapped to obtain derived orderings. Some of the most commonly used variations include:
一个Ordering可以被包装成派生的ordering. 一些最常用的变体如下:
| Method | Description |
| reverse() |
Returns the reverse ordering. 返回逆向的ordering, 相当于本来是left.compareTo(right), 现在是 right.compareTo(left) |
| nullsFirst() |
Returns an Ordering that orders nulls before non-null elements, and otherwise behaves the same as the original Ordering. See also nullsLast(). 返回一个先排序nulls在排序non-null元素的Ordering, 其他方面和原始的Ordering一样 |
| compound(Comparator) |
Returns an Ordering which uses the specified Comparator to "break ties." 返回一个使用指定comparator的Ordering, 这个指定的comparator会作为第二比较器来使用 |
| lexicographical() |
Returns an Ordering that orders iterables lexicographically by their elements. 返回一个根据元素的字典顺序来排序遍历器(iterables)的ordering. 例如, [] < [1] < [1, 1] < [1, 2] < [2] |
| onResultOf(Function) |
Returns an Ordering which orders values by applying the function to them and then comparing the results using the original Ordering. 返回一个先用function的apply方法处理待排序的值然后再比较处理后的结果的Ordering |
For example, let's say you want a comparator for the class...
举个例子, 比如你想要一个class的comparator
classFoo{
@Nullable String sortedBy;
int notSortedBy;
}
...that can deal with null values of sortedBy. Here is a solution built atop the chaining methods:
这可以处理sortedBy的null值.这里有一个使用链式调用的解决方案:
Ordering<Foo> ordering = Ordering.natural().nullsFirst().onResultOf(new Function<Foo,String>(){
publicString apply(Foo foo){
return foo.sortedBy;
}
});
When reading a chain of Ordering calls, work "backward" from right to left. The example above orders Foo instances by looking up theirsortedBy field values, first moving any null sortedBy values to the top and then sorting the remaining values by natural string ordering. This backward order arises because each chaining call is "wrapping" the previous Ordering into a new one.
当读取一个链式的ordering调用, 工作顺序是用右向左"反向"的. 上面的例子的顺序是先查找sortedBy的值, 然后将null的sortedBy的值移到最前面,然后将剩下的值按照自然字符串顺序进行排序.这种反向顺序出现是因为每个链的调用都被将一个Ordering包装成一个新的Ordering.
(Exception to the "backwards" rule: For chains of calls to compound, read from left to right. To avoid confusion, avoid intermixing compound calls with other chained calls.)
("反向"规则的例外: 对compound的连时调用, 是从左到右的.为了避免困惑, 避免将compound和其他链式方法混在一起调用)
Chains longer than a few calls can be difficult to understand. We recommend limiting chaining to about three calls as in the example above. Even then, you may wish to simplify the code by separating out intermediate objects such as Function instances:
太长的链式调用会让人难以理解.我们建议将链式调用限制在三个方法内.即使那样,你也可能希望通过分离中间对象(例如Function匿名类)来简化代码:
Ordering<Foo> ordering =Ordering.natural().nullsFirst().onResultOf(sortKeyFunction);
Application 应用
Guava provides a number of methods to manipulate or examine values or collections using the ordering. We list some of the most popular here.
Guava提供了一系列的方法来使用Ordering操作和检查值和集合.下面列举一些最常用的一些方法:
| Method | Description | See also |
| greatestOf(Iterable iterable, int k) |
Returns the k greatest elements of the specified iterable, according to this ordering, in order from greatest to least. Not necessarily stable. 返回指定的iterable最大的k个元素, 根据当前ordering的规则, 顺序是从最大到最小的. |
leastOf |
| isOrdered(Iterable) |
Tests if the specified Iterable is in nondecreasing order according to this ordering. 测试指定的Iterable是否按照ordering的非降序顺序排列 |
isStrictlyOrdered |
| sortedCopy(Iterable) |
Returns a sorted copy of the specified elements as a List. 返回一个Iterable的排序副本 |
immutableSortedCopy |
| min(E, E) |
Returns the minimum of its two arguments according to this ordering. If the values compare as equal, the first argument is returned. 返回根据ordering判断的两个参数中的最小值.假如两个参数一样大,则返回第一个参数 |
max(E, E) |
| min(E, E, E, E...) |
Returns the minimum of its arguments according to this ordering. If there are multiple least values, the first is returned. 返回根据ordering判断的多个参数中的最小值.如果有多个最小值,则返回第一个参数 |
max(E, E, E, E...) |
| min(Iterable) |
Returns the minimum element of the specified Iterable. Throws a NoSuchElementException if the Iterable is empty. 返回Iterable中的最小值.如果Iterable是空的则抛出NoSuchElementException异常 |
max(Iterable), min(Iterator),max(Iterator) |
Chapter 3 -- Ordering的更多相关文章
- CHAPTER 19 Ordering the World 第19章 分类世界
CHAPTER 19 Ordering the World 第19章 分类世界 Our planet is home to a bewildering variety of plants and an ...
- Think Python - Chapter 18 - Inheritance
In this chapter I present classes to represent playing cards, decks of cards, and poker hands.If you ...
- Learning Puppet — Resource Ordering
Learning Puppet — Resource Ordering Learn about dependencies and refresh events, manage the relation ...
- MongoDB:The Definitive Guide CHAPTER 2 Getting Started
MongoDB is very powerful, but it is still easy to get started with. In this chapter we’ll introduce ...
- Chapter 4: Spring and AOP:Spring's AOP Framework -- draft
Spring's AOP Framework Let's begin by looking at Spring's own AOP framework - a proxy-based framewor ...
- Chapter 3. Programming with RDDs
Programming with RDDs This chapter introduces Spark's core abstraction for working with data, the r ...
- Chapter 2 Secondary Sorting:Detailed Example
2.1 Introduction MapReduce framework sorts input to reducers by key, but values of reducers are arbi ...
- JVM Specification 9th Edition (4) Chapter 3. Compiling for the Java Virtual Machine
Chapter 3. Compiling for the Java Virtual Machine 内容列表 3.1. Format of Examples 3.2. Use of Constants ...
- JVM Specification 9th Edition (3) Chapter 2. The Structure of the Java Virtual Machine
Chapter 2. The Structure of the Java Virtual Machine 内容列表 2.1. The class File Format (class文件的格式) 2. ...
随机推荐
- CSS选择器优先级(转)
原文:http://www.cnblogs.com/wangfupeng1988/p/4285251.html 另外,w3c有文章介绍了CSS选择器的特定性,见https://www.w3.org/T ...
- JAVAEE——宜立方商城13:Mycat数据库分片、主从复制、读写分离、100%Linux中成功安装Mysql的方法
1 海量数据的存储问题 如今随着互联网的发展,数据的量级也是撑指数的增长,从GB到TB到PB.对数据的各种操作也是愈加的困难,传统的关系性数据库已经无法满足快速查询与插入数据的需求.这个时候NoSQL ...
- 【Ray Tracing in One Weekend 超详解】 光线追踪1-8 自定义相机设计
今天,我们来学习如何设计自定义位置的相机 ready 我们只需要了解我们之前的坐标体系,或者说是相机位置 先看效果 Chapter10:Positionable camera 这一章我们直接用概念 ...
- 表达式树(Expression Tree)
饮水思源 本文并非原创而是下面网址的一个学习笔记 https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/e ...
- require和require.async的区别
本文用seajs来讲解两种模块加载方式require和require.async的区别,类似java里的import,php里的include. <!DOCTYPE html> <h ...
- luogu P1401 城市
题目链接 luogu P1401 城市 题解 二分最小边权,dinic检验 代码 // luogu-judger-enable-o2 /* 二分最小边权,dinic检验 */ #include< ...
- 2018-2019-20172329 《Java软件结构与数据结构》第五周学习总结
2018-2019-20172329 <Java软件结构与数据结构>第五周学习总结 教材学习内容总结 <Java软件结构与数据结构>第九章-排序与查找 一.查找 1.查找概念简 ...
- j.u.c系列(06)---之锁条件:Condition
写在前面 在没有Lock之前,我们使用synchronized来控制同步,配合Object的wait().notify()系列方法可以实现等待/通知模式.在Java SE5后,Java提供了Lock接 ...
- Microsoft实现的IOC DI之 Unity 、Service Locator、MEF
这几个工具的站点 Microsoft Unity http://unity.codeplex.com Service Locator http://commonservicelocator.code ...
- PG的集群技术:Pgpool-II与Postgres-XC Postgres-XL Postgres-XZ Postges-x2
https://segmentfault.com/a/1190000007012082 https://www.postgres-xl.org/ https://www.biaodianfu.com/ ...