Arrays.sort(T[], Comparator < ? super T > c) 方法用于对象数组按用户自定义规则排序.
官方Java文档只是简要描述此方法的作用,并未进行详细的介绍,本文将深入解析此方法。
1. 简单示例
sort方法的使用非常的简单明了,下面的例子中,先定义一个比较Dog大小的Comparator,然后将其实例对象作为参数传给sort方法,通过此示例,你应该能够快速掌握Arrays.sort()的使用方法。

  1. import java.util.Arrays;
  2. import java.util.Comparator;
  3. class Dog{
  4. int size;
  5. public Dog(int s){
  6. size = s;
  7. }
  8. }
  9. class DogSizeComparator implements Comparator<Dog>{
  10. @Override
  11. public int compare(Dog o1, Dog o2) {
  12. return o1.size - o2.size;
  13. }
  14. }
  15. public class ArraySort {
  16. public static void main(String[] args) {
  17. Dog d1 = new Dog(2);
  18. Dog d2 = new Dog(1);
  19. Dog d3 = new Dog(3);
  20. Dog[] dogArray = {d1, d2, d3};
  21. printDogs(dogArray);
  22. Arrays.sort(dogArray, new DogSizeComparator());
  23. printDogs(dogArray);
  24. }
  25. public static void printDogs(Dog[] dogs){
  26. for(Dog d: dogs)
  27. System.out.print(d.size + " " );
  28. System.out.println();
  29. }
  30. }

输出为:

  1. 2 1 3
  2. 1 2 3

2. 使用策略模式
这是策略模式(Strategy pattern)的一个完美又简洁的示例,值得一提的是为什么这种场景下适合使用策略模式.
总体来说,策略模式允许在程序执行时选择不同的算法.比如在排序时,传入不同的比较器(Comparator),就采用不同的算法.
根据上面的例子,假设你想要根据Dog的重量来进行排序,可以像下面这样,创建一个新的比较器来进行排序:

  1. class Dog{
  2. int size;
  3. int weight;
  4. public Dog(int s, int w){
  5. size = s;
  6. weight = w;
  7. }
  8. }
  9. class DogSizeComparator implements Comparator<Dog>{
  10. @Override
  11. public int compare(Dog o1, Dog o2) {
  12. return o1.size - o2.size;
  13. }
  14. }
  15. class DogWeightComparator implements Comparator<Dog>{
  16. @Override
  17. public int compare(Dog o1, Dog o2) {
  18. return o1.weight - o2.weight;
  19. }
  20. }
  21. public class ArraySort {
  22. public static void main(String[] args) {
  23. Dog d1 = new Dog(2, 50);
  24. Dog d2 = new Dog(1, 30);
  25. Dog d3 = new Dog(3, 40);
  26. Dog[] dogArray = {d1, d2, d3};
  27. printDogs(dogArray);
  28. Arrays.sort(dogArray, new DogSizeComparator());
  29. printDogs(dogArray);
  30. Arrays.sort(dogArray, new DogWeightComparator());
  31. printDogs(dogArray);
  32. }
  33. public static void printDogs(Dog[] dogs){
  34. for(Dog d: dogs)
  35. System.out.print("size="+d.size + " weight=" + d.weight + " ");
  36. System.out.println();
  37. }
  38. }

执行结果:

  1. size=2 weight=50 size=1 weight=30 size=3 weight=40
  2. size=1 weight=30 size=2 weight=50 size=3 weight=40
  3. size=1 weight=30 size=3 weight=40 size=2 weight=50

Comparator 是一个接口,所以sort方法中可以传入任意实现了此接口的类的实例,这就是策略模式的主要思想.

3. 为何使用"super"
如果使用 "Comparator < T > c" 那是很简单易懂的,但是sort的第2个参数里面的 < ? super T > 意味着比较器所接受的类型可以是T或者它的超类. 为什么是超类呢? 答案是: 这允许使用同一个比较器对不同的子类对象进行比较.在下面的示例中很明显地演示了这一点:

  1. import java.util.Arrays;
  2. import java.util.Comparator;
  3. class Animal{
  4. int size;
  5. }
  6. class Dog extends Animal{
  7. public Dog(int s){
  8. size = s;
  9. }
  10. }
  11. class Cat extends Animal{
  12. public Cat(int s){
  13. size  = s;
  14. }
  15. }
  16. class AnimalSizeComparator implements Comparator<Animal>{
  17. @Override
  18. public int compare(Animal o1, Animal o2) {
  19. return o1.size - o2.size;
  20. }
  21. //in this way, all sub classes of Animal can use this comparator.
  22. }
  23. public class ArraySort {
  24. public static void main(String[] args) {
  25. Dog d1 = new Dog(2);
  26. Dog d2 = new Dog(1);
  27. Dog d3 = new Dog(3);
  28. Dog[] dogArray = {d1, d2, d3};
  29. printDogs(dogArray);
  30. Arrays.sort(dogArray, new AnimalSizeComparator());
  31. printDogs(dogArray);
  32. System.out.println();
  33. //when you have an array of Cat, same Comparator can be used.
  34. Cat c1 = new Cat(2);
  35. Cat c2 = new Cat(1);
  36. Cat c3 = new Cat(3);
  37. Cat[] catArray = {c1, c2, c3};
  38. printDogs(catArray);
  39. Arrays.sort(catArray, new AnimalSizeComparator());
  40. printDogs(catArray);
  41. }
  42. public static void printDogs(Animal[] animals){
  43. for(Animal a: animals)
  44. System.out.print("size="+a.size + " ");
  45. System.out.println();
  46. }
  47. }

输出结果:

  1. size=2 size=1 size=3
  2. size=1 size=2 size=3
  3. size=2 size=1 size=3
  4. size=1 size=2 size=3

4. 小结
与Arrays.sort()相关的信息总结如下:

    1. 通用: super 类
    2. 策略设计模式(strategy pattern);
    3. 归并排序(merge sort): 时间复杂度 n*log(n);
    4. Java.util.Collections#sort(List < T > list, Comparator < ? super T > c)与Arrays.sort 使用类似的思想.

http://blog.csdn.net/wisgood/article/details/16541013

深入理解Arrays.sort() (转)的更多相关文章

  1. 深入理解Arrays.sort()

    两种方法: 1.类本来就实现java.lang.Comparable接口,使类本身就有比较能力.接口实现compareTo方法,次方法接收另一个Object为参数,如果当前对象小于参数则返回负值,如果 ...

  2. [转]Arrays.sort()你应该知道的事

    以下内容转自: 原文链接: programcreek 翻译: ImportNew.com- 刘志军 译文链接: http://www.importnew.com/8952.html --------- ...

  3. Arrays.sort源代码解析

    Java Arrays.sort源代码解析 Java Arrays中提供了对所有类型的排序.其中主要分为Primitive(8种基本类型)和Object两大类. 基本类型:采用调优的快速排序: 对象类 ...

  4. Arrays.sort解析

    Arrays.sort()解读 在学习了排序算法之后, 再来看看 Java 源码中的, Arrays.sort() 方法对于排序的实现. 都是对基本数据类型的排序实现, 下面来看看这段代码: Arra ...

  5. Java 容器 & 泛型:四、Colletions.sort 和 Arrays.sort 的算法

    Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket 本来准备讲 Map集合 ,还是喜欢学到哪里总结吧.最近面试期准备准备,我是一员,成功被阿里在线笔试秒杀 ...

  6. Java Arrays.sort源代码解析

    前提: 当用到scala的sortWith,发现: def sortWith(lt: (A, A) ⇒ Boolean): List[A] // A为列表元素类型 根据指定比较函数lt进行排序,且排序 ...

  7. Arrays.sort()的底层实现

    1.基本类型(以int为例) 源码中的快速排序,主要做了以下几个方面的优化: 1)当待排序的数组中的元素个数较少时,源码中的阀值为7,采用的是插入排序.尽管插入排序的时间复杂度为0(n^2),但是当数 ...

  8. 5.4 集合的排序(Java学习笔记)(Collections.sort(),及Arrays.sort()底层分析)

    1.Comparable接口 这个接口顾名思义就是用于排序的,如果要对某些对象进行排序,那么该对象所在的类必须实现 Comparabld接口.Comparable接口只有一个方法CompareTo() ...

  9. Java Arrays.sort相关用法与重载

    Java Arrays.sort() Java中的数组排序函数, 头文件 import java.util.Arrays; 相关API Arrays.sort(arys[]) Arrays.sort( ...

随机推荐

  1. USACO Barn Repair 【贪心算法】

    这到题目的题意不太好理解= = 看来还是英语太弱了 实际上题目给了你M, S, C 分别代表最多不超过M 块木板, S代表牛棚总数,C代表接下来有C个牛所在牛棚的标号 然后求的是如何安排方案,可以使得 ...

  2. poj 1363 Rails in PopPush City &&【求堆栈中合法出栈顺序次数】

    问题如下: 问题 B: Rails 时间限制: Sec 内存限制: MB 提交: 解决: [提交][状态][讨论版] 题目描述 There is a famous railway station in ...

  3. Spirng+SpringMVC+Maven+Mybatis+MySQL项目搭建(转)

    这篇文章主要讲解使用eclipse对Spirng+SpringMVC+Maven+Mybatis+MySQL项目搭建过程,包括里面步骤和里面的配置文件如何配置等等都会详细说明. 如果还没有搭建好环境( ...

  4. asp.net jquery+ajax异步刷新1

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  5. 基于html5 localStorage , web SQL, websocket的简单聊天程序

    new function() { var ws = null; var connected = false; var serverUrl; var connectionStatus; var send ...

  6. 全栈project师的悲与欢

    从小米辞职出来创业的两个多月里,通过猎头或自己投简历,先后面试了知乎,今日头条,豌豆荚,美团,百度,App Annie,去哪儿,滴滴打车等技术团队,一二面(技术面)差点儿都轻松的过了,三面却没有毕业那 ...

  7. C# 多媒体播放器

    //停止播放 public void stopFile() { axWindowsMediaPlayer1.Ctlcontrols.stop(); } //暂停文件 public void pause ...

  8. Winform TabControl控件使用

    运行效果: 代码: /// <summary> /// 添加选项卡 /// </summary> /// <param name="sender"&g ...

  9. mybatis操作动态表+动态字段+存储过程

    存储过程 statementType="CALLABLE" <!-- 计算金额存储过程--> <update id="getCalcDistributo ...

  10. 在程序中,你敢怎样使用“goto”语句!

    用goto是一个个人爱好的问题.“我”的意见是,十个goto中有九个可以用相应的结构化结构来替换.在那些简单情形下,你可以完全替换掉goto,在复杂的情况下,十个中也有九个可以不用:你可以把部分代码写 ...