Java / Collections
What is the difference between Iterator and Enumeration ?
Iterator has remove() method while Enumeration doesn't.
Hence, using Iterator we can modify the collection by adding and removing the objects. Enumeration acts as a read only interface, only traverse through the objects.
More Related questions...