Collectors.LongStatistics Min/Max Values

Niels Nonsense niels.nwx at gmail.com
Thu Feb 28 14:49:55 PST 2013


The accept method of LongStatistics should be rewritten as:
@Override
public void accept(long value) {
    sum += value;
    min = count == 0 ? value : Math.min(min, value);
    max = Math.max(max, value);
    ++count;
}
Similar for combine and the other primitives.

2013/2/28 Robert J. Saulnier <robert.j.saulnier at gmail.com>

> I'm guessing this was already discussed.
>
> Why does the following print "min=0" instead of "min=1"?
>
> List<Long> nums = Arrays.asList(1L, 2L, 3L);
>
> Collectors.LongStatistics stats =
> nums.stream().collect(Collectors.toLongStatistics());
>
> System.out.println("min=" + stats.getMin());
>
> Same issue with max if all the numbers are negative.
>
>


More information about the lambda-dev mailing list