-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCollectionVsStream.java
51 lines (40 loc) · 1.21 KB
/
CollectionVsStream.java
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
48
49
50
51
package com.learn.streams;
import java.util.ArrayList;
import java.util.stream.Stream;
public class CollectionVsStream {
public static void main(String[] args) {
/**
* <p>
* In Collection, we can add, remove or modify the Values.
* </p>
*/
ArrayList<String> names = new ArrayList<>();
names.add("adam");
names.add("jim");
names.add("jenny");
names.remove(0);
System.out.println(names);
/**
* <p>
* But Stream, doesn't allow us to add, modify or delete elements once it is created.
* </p>
*/
/**
* <p>
* Collections can be traversed "n" times.
* </p>
*/
for (String name : names) {
System.out.println(name);
}
for (String name : names) {
System.out.println(name);
}
/**
* Streams can be traversed only once
*/
Stream<String> namesStream = names.stream();
namesStream.forEach(System.out::println);
namesStream.forEach(System.out::println); // it throws an Exception. stream has already been operated upon or closed.
}
}