iterating through Enumeration of hastable keys throws NoSuchElementException error

后端 未结 7 2388
梦谈多话
梦谈多话 2021-02-11 11:51

I am trying to iterate through a list of keys from a hash table using enumeration however I keep getting a NoSuchElementException at the last key in list?

Hasht         


        
7条回答
  •  星月不相逢
    2021-02-11 12:31

    You're calling e.nextElement() twice inside your loop when you're only guaranteed that you can call it once without an exception. Rewrite the loop like so:

    while(e.hasMoreElements()){
      String param = e.nextElement();
      System.out.println(param);
    }
    

提交回复
热议问题