Java声明Set时初始化

按某个范围初始化Set,可用:

Set container = IntStream.range(1,len + 1).boxed().collect(Collectors.toSet());

还可以使用filter进行过滤。

你可能感兴趣的:(Java)