Hi all, I am new to java tech. Can anyone explain me the difference between Enumeration and Iterator, when should I use enumeration and when Iterator. Any help would be appreciated.
Thanx in advance.
Steven Bell
Ranch Hand
Joined: Dec 29, 2004
Posts: 1071
posted
0
To the best of my knowledge Enumeration is a throwback to older Java versions. At some point there was the decision to move to the Iterator pattern (this may have had something to do with the GOF book, not sure). However to keep the 'not breaking backwards compatability' contract the Enumerations were left in. I don't think there is a big difference, although Iterator is the 'prefered' way to go.