填充一个列表与短裤的连续范围(Populating a List with a contiguous

2019-10-23 08:22发布

https://stackoverflow.com/a/23675131/14731提供一种用于产生连续的整数列表一个很好的解决方案。 眼见为JDK8不提供ShortStream类,你会如何产生连续的短裤的名单?

我在寻找的线沿线的东西:

List<Short> range = ShortStream.range(0, 500).boxed().collect(Collectors.toList());

其中输出包含短裤的列表,从0至500以下。

Answer 1:

List<Short> range = 
    IntStream.range(0, 500).mapToObj(i -> (short) i).collect(Collectors.toList());


文章来源: Populating a List with a contiguous range of shorts