How does the enhanced for statement work for arrays, and how to get an iterator for an array?(增强的 for 语句如何用于数组,以及如何获取数组的迭代器?)
问题描述
给定以下代码片段:
int[] arr = {1, 2, 3};
for (int i : arr)
System.out.println(i);
我有以下问题:
- 上述 for-each 循环是如何工作的?
- 如何在 Java 中获取数组的迭代器?
- 是否将数组转换为列表以获取迭代器?
推荐答案
如果你想要一个数组上的 Iterator,你可以使用其中的一个直接实现,而不是将数组包装在一个列表.例如:
If you want an Iterator over an array, you could use one of the direct implementations out there instead of wrapping the array in a List. For example:
Apache Commons Collections ArrayIterator
或者,这个,如果你想使用泛型:
Or, this one, if you'd like to use generics:
com.Ostermiller.util.ArrayIterator
请注意,如果您想在原始类型上使用 Iterator,则不能,因为原始类型不能是泛型参数.例如,如果你想要一个 Iterator<int>,你必须使用 Iteratorint[].
Note that if you want to have an Iterator over primitive types, you can't, because a primitive type can't be a generic parameter. E.g., if you want an Iterator<int>, you have to use an Iterator<Integer> instead, which will result in a lot of autoboxing and -unboxing if that's backed by an int[].
这篇关于增强的 for 语句如何用于数组,以及如何获取数组的迭代器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:增强的 for 语句如何用于数组,以及如何获取数组
基础教程推荐
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
