Answers for "arraylist sum java"

1

sum of arraylist java 8

int total = numbers.stream().mapToInt(i -> i.intValue()).sum();
		System.out.print(total);
Posted by: Guest on May-30-2020
1

inbuild method to sum of an arraylist elements in java

doubleList.stream().reduce((a,b)->a+b).get();
Posted by: Guest on October-21-2020
0

sum and array list java

int sum = (list.stream().
        mapToInt(i -> i.intValue()).sum()
Posted by: Guest on June-22-2021
-1

inbuild method to sum of an arraylist elements in java

//If you have a List<Integer>
int sum = list.stream().mapToInt(Integer::intValue).sum();

//If it's an int[]
int sum = IntStream.of(a).sum();
Posted by: Guest on October-21-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language