Add items to list in for loop java

How to iterate through Java List? This tutorial demonstrates the use of ArrayList, Iterator and a List.

There are 7 ways you can iterate through List.

  1. Simple For loop
  2. Enhanced For loop
  3. Iterator
  4. ListIterator
  5. While loop
  6. Iterable.forEach[] util
  7. Stream.forEach[] util

Java Example:

You need JDK 13 to run below program as point-5 above uses stream[] util.

void java.util.stream.Stream.forEach[Consumer

Chủ Đề