-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamsDemo.java
63 lines (47 loc) · 1.96 KB
/
StreamsDemo.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
52
53
54
55
56
57
58
59
60
61
62
63
package com.bootrcamp.demo;
import java.util.Arrays;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import java.util.stream.Stream;
public class StreamsDemo {
public static void main(String[] args) {
//Ways to create Stream
System.out.println(Arrays.asList(1,2,3,4,5).stream());
System.out.println(Stream.of(new int[]{5,6,7,8}));
System.out.println(Stream.of(9,10,11,12));
Stream<Integer> integerStream = Arrays.asList(1,2,3,4,5,6,7,8,10).stream();
integerStream.forEach(e-> System.out.println(e));
// For Each
Arrays.asList(11,12,13,14,15,16,17,18,20).stream().forEach(System.out::println);
// Map
System.out.println(Arrays.asList(11,12,13,14,15,16,17,18,20)
.stream()
.map(e->e*2));;
System.out.println(Arrays.asList(11,12,13,14,15,16,17,18,20)
.stream()
.map(e->e*2)
.collect(Collectors.toList()));;
Stream.of(1,2,3,4,5,6,7,8,9,10)
.filter(e->e%2==0)
.map(e->e*13)
.forEach(System.out::println);
System.out.println(Arrays.asList(1,2,3,4,5)
.stream()
.mapToInt(e->e).average());
System.out.println(Arrays.asList("abc","def", "ghi").stream()
.map(String::toUpperCase)
.collect(Collectors.joining("-")));;
System.out.println(Arrays.asList(1,2,3,4,5)
.stream()
.collect(Collectors.summarizingInt(x->x)));
System.out.println(Arrays.asList(1,2,3,4,5)
.stream()
.collect(Collectors.counting()));
System.out.println(Arrays.asList(1,2,3,4,5)
.stream()
.collect(Collectors.averagingInt(e->e)));
System.out.println(Arrays.asList(1,2,3,4,5)
.stream()
.collect(Collectors.toMap(e->e,e->e*2)));
}
}