-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamsDemo2.java
39 lines (29 loc) · 1.23 KB
/
StreamsDemo2.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
package com.bootrcamp.demo;
import java.util.Arrays;
import java.util.Optional;
public class StreamsDemo2 {
public static void main(String[] args) {
Optional<Integer> optionalInteger =
// Arrays.asList(7,9,10,23,80,98,24)
Arrays.asList(7,9)
.stream()
.filter(e-> {System.out.println("filter>>>"+e); return e%2==0;})
.map(e-> {System.out.println("map>>>>"+e); return e*2;} )
.findFirst();
if(optionalInteger.isPresent()){
System.out.println("result ::"+optionalInteger.get());
}else{
System.out.println("No result found");
}
//Lazy evaluation
System.out.println(Arrays.asList(7,9,10,23,80,98,24)
.stream()
.filter(e-> {System.out.println("filter>>>"+e); return e%2==0;})
.map(e-> {System.out.println("map>>>>"+e); return e*2;} ));
Arrays.asList(7,9,10,23,80,98,24)
.stream()
.filter(e-> {System.out.println("filter>>>"+e); return e%2==0;})
.map(e-> {System.out.println("map>>>>"+e); return e*2;} )
.forEach(System.out::println);
}
}