About 71,500 results
Open links in new tab
  1. Iterator (Java Platform SE 8 ) - Oracle

    Iterators allow the caller to remove elements from the underlying collection during the iteration with well-defined semantics. Method names have been improved. This interface is a member of the Java …

  2. Iterator - Wikipedia

    In computer programming, an iterator is an object that progressively provides access to each item of a collection, in order. [1][2][3] A collection may provide multiple iterators via its interface that provide …

  3. Iterator in Java - GeeksforGeeks

    Mar 11, 2026 · An Iterator in Java is one of the most commonly used cursors in the Java Collections Framework. It is used to traverse or iterate through elements of a collection one by one.

  4. Java Iterator - W3Schools

    An Iterator is an object that can be used to loop through collections, like ArrayList and HashSet. It is called an "iterator" because "iterating" is the technical term for looping.

  5. Iterators and generators - JavaScript - MDN

    Jul 29, 2025 · Once created, an iterator object can be iterated explicitly by repeatedly calling next(). Iterating over an iterator is said to consume the iterator, because it is generally only possible to do once.

  6. Iterators - C# | Microsoft Learn

    Nov 10, 2021 · Learn how to use built-in C# iterators and how to create your own custom iterator methods.

  7. A Guide to Iterator in Java - Baeldung

    Jun 27, 2025 · In this tutorial, we’re going to review the simple Iterator interface to learn how we can use its different methods. We’ll also check the more robust ListIterator extension which adds some …

  8. Python Iterators - Python Geeks

    Learn what are Python iterators with working and examples. See how to create iterators & how to use the next() function.

  9. C++ Iterators - Programiz

    An iterator is a pointer-like object representing an element's position in a container and is used to iterate over the container elements. In this tutorial, we will learn about C++ iterators with the help of examples.

  10. Understanding Iterators in Java — javaspring.net

    Jan 16, 2026 · An iterator in Java is an object that allows you to traverse through a collection and perform operations on its elements. It is part of the Java Collections Framework and is defined by the …