标签:dHash lis iterator tar style 必备知识 链式 知识 iter
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));
标签:dHash lis iterator tar style 必备知识 链式 知识 iter
原文地址:https://www.cnblogs.com/ZeroMZ/p/9249278.html