my dog learned polymorphism
The moose likes Beginning Java and the fly likes problem in remove() in iterator. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "problem in remove() in iterator." Watch "problem in remove() in iterator." New topic
Author

problem in remove() in iterator.

Ritesh raushan
Ranch Hand

Joined: Aug 29, 2012
Posts: 99
problem in remove() when i remove this method then output is infinite loop,
but when i write this method the output is 13,14,15,13,13.i don't know how came


Jeff Verdegan
Bartender

Joined: Jan 03, 2004
Posts: 6109
    
    6

If you read the docs, you'll see that calling next() and previous() doesn't just return the next or previous element. It also changes the state of the iterator, moving it one forward or one back. If you don't call remove(), then you're just going forward, back, forward, back, ... forever, and never getting to the end of the list.
Paul Witten
Ranch Hand

Joined: Oct 10, 2012
Posts: 86
Jeff Verdegan wrote:If you don't call remove(), then you're just going forward, back, forward, back, ... forever, and never getting to the end of the list.

Did not know that.

Reminds me of Vote=Left, Vote=Right, Vote=Left, Vote=Right ...

 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: problem in remove() in iterator.
 
Similar Threads
Please Help: Putting Vector objects into HashMap
Iterator can safely remove?
How to write generic method for this method?
vectors!
some queries in the program