JDK5.0中collection都有哪些变化
在5.0中,collection最大的一个改变就是可以指定它的具体类型: List list=new List;
两个最基本的接口: public interface Collection { boolean add(E element); Iterator iterator(); . . . }
public interface Iterator { E next(); boolean hasNext(); void remove(); }
在5.0以前,常用的形式就是: Collection c = . . .; Iterator iter = c.iterator(); while (iter.hasNext()) { String element = iter.next(); do something with element } 但是在5.0中加入另外一种循环方式,类似于for each: for (String element : c) { do something with element } 这种方式对任何实现了Iterable接口的类都适用。
在使用remove的时候特别要注意的一点是,在调用remove之前必须先调用一次next方法,因为next就像是在移动一个指针,remove删掉的就是指针刚刚跳过去的东西。即使是你想连续删掉两个相邻的东西,也必须在每次删除之前调用next。
对collection排序和查找 Collections类的sort方法可以对任何实现了List接口的类进行排序。在排序过程中,他默认这些类实现了Comparable接口,如果想用其他方法排序,可以在调用sort方法的时候提供一个Comparator对象: Comparator itemComparator = new Comparator() { public int compare(Item a, Item b) { return a.partNumber - b.partNumber; } }); 反向排序: Collections.sort(items, itemComparator); Collections.sort(items, Collections.reverseOrder(itemComparator));
查找一个对象: i = Collections.binarySearch(c, element); i = Collections.binarySearch(c, element, comparator); 但是这些list必须是已经排好序了。而且要注意的是这个算法需要随机访问collection,如果不支持随机访问那么这个算法的效率可能会很低。
几种常用Collection: ArrayList An indexed sequence that grows and shrinks dynamically 可以随机访问,但是如果要从中间删除一个对象会影响效率,因为有些未删除的对象要相应的调整位置。非线程安全,但效率会比Vector要高,如果在单线程下,选它而不是Vector。
LinkedList An ordered sequence that allows efficient insertions and removal at any location 只能按顺序访问,添加删除很方便。虽然提供了get(n)方法,但实际上还是顺序访问的,如果发 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |