About Question enthuware.ocpjp.v8.2.1884 :
Posted: Mon Oct 26, 2015 11:12 am
typo-
1. IntStream.range returns a sequential ordered IntStream from startInclusive (inclusive) to endExclusive (exclusive) by an incremental step of 1. Therefore, is1 contains 1, 2.
2. IntStream.range returns a sequential ordered IntStream from startInclusive (inclusive) to endInclusive (inclusive) by an incremental step of 1. Therefore, is2 contains 1, 2, 3.
2. IntStream.rangeClosed