public static interface PrimitiveIterator.OfInt
implements PrimitiveIterator<Integer, IntConsumer>
java.util.PrimitiveIterator.OfInt |
一个专门用于 int
值的迭代器。
Public methods |
|
---|---|
default void |
forEachRemaining(Consumer<? super Integer> action) |
default void |
forEachRemaining(IntConsumer action) 对每个剩余元素执行给定操作,直到处理完所有元素或操作抛出异常。 |
default Integer |
next() 返回迭代中的下一个元素。 |
abstract int |
nextInt() 返回迭代中的下一个 |
Inherited methods |
|
---|---|
From interface java.util.PrimitiveIterator
|
|
From interface java.util.Iterator
|
void forEachRemaining (Consumer<? super Integer> action)
IntConsumer
then it is cast to IntConsumer
and passed to forEachRemaining(T_CONS)
; otherwise the action is adapted to an instance of IntConsumer
, by boxing the argument of IntConsumer
, and then passed to forEachRemaining(T_CONS)
. Parameters | |
---|---|
action |
Consumer
|
void forEachRemaining (IntConsumer action)
对每个剩余元素执行给定操作,直到处理完所有元素或操作抛出异常。 如果指定了该顺序,则按迭代顺序执行操作。 该操作引发的异常会中继给调用者。
默认实现的行为如下:
while (hasNext())
action.accept(nextInt());
Parameters | |
---|---|
action |
IntConsumer : The action to be performed for each element |
Throws | |
---|---|
NullPointerException |
if the specified action is null |
Integer next ()
返回迭代中的下一个元素。
nextInt()
, and returns that boxed result. Returns | |
---|---|
Integer |
the next element in the iteration |
int nextInt ()
返回迭代中的下一个 int
元素。
Returns | |
---|---|
int |
the next int element in the iteration |
Throws | |
---|---|
NoSuchElementException |
if the iteration has no more elements |