增强的 for 语句如何用于数组,以及如何获取数组的迭代器?

How does the enhanced for statement work for arrays, and how to get an iterator for an array?(增强的 for 语句如何用于数组,以及如何获取数组的迭代器?)
本文介绍了增强的 for 语句如何用于数组,以及如何获取数组的迭代器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

给定以下代码片段:

int[] arr = {1, 2, 3};
for (int i : arr)
    System.out.println(i);

我有以下问题:

  1. 上述 for-each 循环是如何工作的?
  2. 如何在 Java 中获取数组的迭代器?
  3. 是否将数组转换为列表以获取迭代器?

推荐答案

如果你想要一个数组上的 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>,你必须使用 Iterator 代替,这将导致大量的自动装箱和 -unboxing 如果支持通过 int[].

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 语句如何用于数组,以及如何获取数组的迭代器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)