0

这是我的Java代码:

public static void main(String[] args) {  
    Map<String, String> map = new HashMap<String, String>();  
    map.put("_name", "name");  
    map.put("_age", "age");  
    Set<String> set = map.keySet();  
    Iterator iterator = set.iterator();  
    // the first iteration  
    StringBuffer str1 = new StringBuffer();  
    while (iterator.hasNext()) {  
        str1.append(iterator.next() + ",");  
    }  
    String str1To = str1.substring(0, str1.lastIndexOf(",")).toString();  
    System.out.println(str1To);  
    // the second iteration  
    StringBuffer str2 = new StringBuffer();  
    while (iterator.hasNext()) {  
        str2.append(iterator.next() + ",");  
    }  
    String str2To = str2.substring(0, str2.lastIndexOf(",")).toString();// ?????  
    System.out.println(str2To);  
}

我的问题是,为什么第二个循环不迭代?第一次迭代是否已经iterator结束了?这会影响第二次迭代吗?

我如何解决它?

4

3 回答 3

3

您的第一个while循环将移动迭代直到iterator到达列表的末尾。在那一刻,iteratorin 本身指向 的结尾list,在你的情况下是map.keySet()。这就是下一个while循环失败的原因,因为调用iterator.hasNext()返回false

更好的方法是使用Enhanced For Loop, 像这样的东西而不是你的while循环:

for(String key: map.keySet()){
    //your logic
}
于 2012-08-31T03:11:28.780 回答
0

迭代器仅供一次性使用。所以再次要求迭代器。

于 2012-08-31T03:11:39.383 回答
0

You need to call set.iterator() each time you want to iterate through a collection. I suggest that you use a different variable for each iteration as well.

于 2012-08-31T03:11:50.990 回答