forked from Allianzcortex/code_collection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForEachExample.java
More file actions
47 lines (33 loc) · 1.18 KB
/
ForEachExample.java
File metadata and controls
47 lines (33 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.function.Consumer;
import java.lang.Integer;
public class ForEachExample {
public static void main(String[] args) {
//creating sample Collection
List<Integer> myList = new ArrayList<Integer>();
for (int i = 0; i < 10; i++) myList.add(i);
//traversing using Iterator
Iterator<Integer> it = myList.iterator();
while (it.hasNext()) {
Integer i = it.next();
System.out.println("Iterator Value::" + i);
}
//traversing through forEach method of Iterable with anonymous class
myList.forEach(new Consumer<Integer>() {
public void accept(Integer t) {
System.out.println("forEach anonymous class Value::" + t);
}
});
//traversing with Consumer interface implementation
MyConsumer action = new MyConsumer();
myList.forEach(action);
}
}
//Consumer implementation that can be reused
class MyConsumer implements Consumer<Integer> {
public void accept(Integer t) {
System.out.println("Consumer impl Value::" + t);
}
}