Java
Programming and Technical
Programming
Technical
Q. What is an Iterator ?
A. The Iterator interface is used to step through the elements of a Collection. Iterators let you process each element of a Collection. Iterators are a generic way to go through all the elements of a Collection no matter how it is organized. Iterator is an Interface implemented a different way for every Collection
Read Solution (Total 1)
-
- Iterator is acts like cursor which moves in forward direction
- 9 years agoHelpfull: Yes(1) No(0)
Java Other Question