Enumeration vs Iterator

After practicing Enumeration and Iterator with examples, let us summarize the differences. Both Enumeration and Iterator are used for iterating elements of a data structure. Iterator, being latest, comes with more features tabulated below. Enumeration Iterator Introduced with JDK 1.0 Introduced with JDK 1.2 Cannot remove any elements Can remove elements from the original DS …

Enumeration vs Iterator Read More »