JAVA遍历LIst的性能
有以下两种方法遍历:
public void list1(List<String> list)
{
long l1 = System.currentTimeMillis();
for (String string : list)
{
System.out.println(string);
}
System.out.println(System.currentTimeMillis() - l1);
}
public void list2(List<String> list)
{
long l1 = System.currentTimeMillis();
Iterator<String> it = list.iterator();
while (it.hasNext())
{
String str = it.next();
System.out.println(str);
}
System.out.println(System.currentTimeMillis() - l1);
}
推荐使用第二种方式,性能比第一种快。
奥秘在于应用程序自身不维护遍历集合的”指针”,所有的内部状态(如当前元素位置,是否有下一个元素)都由Iterator来维护,而这个Iterator 由集合类通过工厂方法生成,因此,它知道如何遍历整个集合。 应用程序不直接和集合类打交道,它总是控制Iterator,向它发送”向前”,”向后”,”取当前元素”的命令,就可以间接遍历整个集合。
HashMap的遍历有两种常用的方法,那就是使用keyset及entryset来进行遍历,但两者的遍历速度是有差别的。
第一种:
Map map = new HashMap();
Iterator iter = map.entrySet().iterator();
while (iter.hasNext()) {
Map.Entry entry = (Map.Entry) iter.next(); Object key = entry.getKey();
Object val = entry.getValue();
}
效率高,以后一定要使用此种方式!
第二种:
Map map = new HashMap();
Iterator iter = map.keySet().iterator();
while (iter.hasNext()) {
Object key = iter.next();
Object val = map.get(key);
}
效率低,以后尽量少使用!
HashMap的遍历有两种常用的方法,那就是使用keyset及entryset来进行遍历,但两者的遍历速度是有差别的,下面请看实例:
public class HashMapTest {
public static void main(String[] args) …{
HashMap hashmap = new HashMap();
for (int i = 0; i <1000; i ) …{
hashmap.put(“” i, “thanks”);
}
long bs = Calendar.getInstance().getTimeInMillis();
Iterator iterator = hashmap.keySet().iterator();
while (iterator.hasNext()) …{
System.out.print(hashmap.get(iterator.next()));
}
System.out.println();
System.out.println(Calendar.getInstance().getTimeInMillis() – bs);
listHashMap();
}
public static void listHashMap() …{
java.util.HashMap hashmap = new java.util.HashMap();
for (int i = 0; i <1000; i ) …{
hashmap.put(“” i, “thanks”);
}
long bs = Calendar.getInstance().getTimeInMillis();
java.util.Iterator it = hashmap.entrySet().iterator();
while (it.hasNext()) …{
java.util.Map.Entry entry = (java.util.Map.Entry) it.next();
// entry.getKey() 返回与此项对应的键
// entry.getValue() 返回与此项对应的值
System.out.print(entry.getValue());
}
System.out.println();
System.out.println(Calendar.getInstance().getTimeInMillis() – bs);
}
}
对于keySet其实是遍历了2次,一次是转为iterator,一次就从hashmap中取出key所对于的value。而entryset只是遍历了第一次,他把key和value都放到了entry中,所以就快了。
注:Hashtable的遍历方法和以上的差不多!
原文链接:http://soft.chinabyte.com/database/316/11793816.shtml