免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1561 | 回复: 2
打印 上一主题 下一主题

问高手一个问题:在java.util里的Arrays类里有这样一个方法是干什么的。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-03-21 19:30 |只看该作者 |倒序浏览
问高手一个问题:
在java.util里的Arrays类里有这样一个方法是干什么的。

public static void sort(Object[] a,Comparator c)

Sorts the specified array of objects according to the order induced by the specified comparator. All elements in the array must be mutually comparable by the specified comparator (that is, c.compare(e1, e2) must not throw a ClassCastException for any elements e1 and e2 in the array).
This sort is guaranteed to be stable: equal elements will not be reordered as a result of the sort.

The sorting algorithm is a modified mergesort (in which the merge is omitted if the highest element in the low sublist is less than the lowest element in the high sublist). This algorithm offers guaranteed n*log(n) performance, and can approach linear performance on nearly sorted lists.

Parameters:
a - the array to be sorted.
c - the comparator to determine the order of the array. A null value indicates that the elements' natural ordering should be used.
Throws:
ClassCastException - if the array contains elements that are not mutually comparable using the specified comparator.
See Also:
Comparator

论坛徽章:
0
2 [报告]
发表于 2006-03-21 20:38 |只看该作者
public static void sort(Object[] a,Comparator c)

根据条件排a这个数组,搜一下论坛或google太多例子了,今天太累了。。。

论坛徽章:
0
3 [报告]
发表于 2006-03-22 11:22 |只看该作者
我在项目中写的一段代码.

  1.         Arrays.sort(results, new Comparator () {
  2.             public int compare(Object cmd0, Object cmd1) {
  3.                 String tagetUri0 = ((Item)((CommandRequest)cmd0).getItems().get(0)).getTargetURI();
  4.                 String tagetUri1 = ((Item)((CommandRequest)cmd1).getItems().get(0)).getTargetURI();
  5.                 return tagetUri0.compareTo(tagetUri1);
  6.             }
  7.         });
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP