在 Java 中的整数范围内获取迭代器的最短方法是什么?换句话说,执行以下操作:
/**
* Returns an Iterator over the integers from first to first+count.
*/
Iterator<Integer> iterator(Integer first, Integer count);
就像是
(first..first+count).iterator()
原文由 cretzel 发布,翻译遵循 CC BY-SA 4.0 许可协议
直接执行作业: