JDK5.0中collection都有哪些变化
现在LinkedList里面使用了这个方法,要考虑这个List类型是否选的合适
HashSet An unordered collection that rejects duplicates 以hashcode为索引,适用于不知道所存对象位置而想寻找某个对象的情况。不可重复
TreeSet A sorted set 与HashSet类似,但是所存对象是排了序的
LinkedHashSet A set that remembers the order in which elements were inserted
PriorityQueue A collection that allows efficient removal of the smallest element 加入Queue的时候会给与一个优先级,从queue中取出的时候先取出优先级最低的
HashMap A data structure that stores key/value associations 存储key/value对,非线程安全,与HashTable相比效率要高些
treeMap A map in which the keys are sorted 排序的HashMap
LinkedHashMap A map that remembers the order in which entries were added |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |