Populating a List with a contiguous range of integers

前端 未结 4 1942
耶瑟儿~
耶瑟儿~ 2020-12-14 15:12

I\'d like to have a list which contains the integers in the range 1 to 500. Is there some way to create this list using Guava (or just plain Java) without having to loop th

4条回答
  •  时光说笑
    2020-12-14 15:29

    The new, Java 8, way:

    List range = IntStream.range(0, 500).boxed().collect(Collectors.toList());
    

提交回复
热议问题