We would like to know how to iterate with forEach method.
// ww w. jav a 2s .c o m import java.util.Arrays; import java.util.List; public class Main { public static void main(String[] args) { List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10); numbers.forEach(System.out::println); } }
The code above generates the following result.