-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamsSumAvgExample.java
40 lines (32 loc) · 1.06 KB
/
StreamsSumAvgExample.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
package com.learn.streams_terminal;
import com.learn.data.Student;
import com.learn.data.StudentDataBase;
import java.util.stream.Collectors;
public class StreamsSumAvgExample {
public static void main(String[] args) {
System.out.println("Total Number of Notebooks : " + summingIntExample());
System.out.println("Average Number of Notebooks : " + averagingIntExample());
}
/**
* <p>
* This is going to return Summation of all the notebooks from all the Students.
* </p>
* @return
*/
public static int summingIntExample() {
return StudentDataBase.getAllStudents()
.stream()
.collect(Collectors.summingInt(Student::getNoteBooks));
}
/**
* <p>
* This is going to return average number of notebooks each student have.
* </p>
* @return
*/
public static double averagingIntExample() {
return StudentDataBase.getAllStudents()
.stream()
.collect(Collectors.averagingInt(Student::getNoteBooks));
}
}