About 64,200 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 …

  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 …

  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 …

  4. std::iterator - cppreference.com

    std::iterator is the base class provided to simplify definitions of the required types for iterators.

  5. 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 …

  6. Iterators and generators - JavaScript - MDN

    Jul 29, 2025 · The most common iterator in JavaScript is the Array iterator, which returns each value in the associated array in …

  7. Iterators - C# | Microsoft Learn

    Jun 2, 2017 · Learn how to use built-in C# iterators and how to create your own custom iterator methods.

  8. <iterator> - C++ Users

    An iterator is any object that, pointing to some element in a range of elements (such as an array or a container), has the ability to …

  9. 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 …

  10. 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. …