LongStream sum()
returns the sum of elements in this stream.
sum
has the following syntax.
long sum()
The following example shows how to use sum
.
import java.util.stream.LongStream; public class Main { public static void main(String[] args) { LongStream b = LongStream.of(1L, 2L, 3L); long s = b.sum(); System.out.println(s); } }
The code above generates the following result.