编程开发之--Java集合类继承与实现必备知识
Posted zeromz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编程开发之--Java集合类继承与实现必备知识相关的知识,希望对你有一定的参考价值。
1、LinkedHashSet有序链式集合
举例:
long startTime=System.currentTimeMillis(); LinkedHashSet oprTypeSet = new LinkedHashSet(); for(String it : arr) { oprTypeSet.add(it); } Iterator it=oprTypeSet.iterator(); while(it.hasNext()) { System.out.println((String)it.next()); } long endTime=System.currentTimeMillis(); System.out.println("cost---:"+(endTime1-startTime1));
以上是关于编程开发之--Java集合类继承与实现必备知识的主要内容,如果未能解决你的问题,请参考以下文章