Languages
[Edit]
EN

Java - iterate through Arraylist using iterator

0 points
Created by:
Emrys-Li
580

In this article, we would like to show you how to iterate through ArrayList using iterator in Java.

Quick solution:

Iterator<String> myIterator = myArrayList.iterator();

while (myIterator.hasNext()) {
    System.out.print(myIterator.next() + " ");
}

 

Practical example

In this example, we create an iterator for letters ArrayList to display all the elements in the proper order.

import java.util.*;

public class Example {

    public static void main(String[] args) {
        List<String> letters = new ArrayList<>();

        letters.add("A");
        letters.add("B");
        letters.add("C");

        // create an iterator
        Iterator<String> myIterator = letters.iterator();

        // display values after iterating through the ArrayList
        System.out.println("The iterator values of the list are: ");
        while (myIterator.hasNext()) {
            System.out.print(myIterator.next() + " ");
        }
    }
}

Output:

The iterator values of the list are: 
A B C 

Related posts

Alternative titles

  1. Java - display all ArrayList elements using iterator
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Java Collections - ArrayList

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join