Java 迭代器接口
Java 迭代器方法
Iterator
接口提供方法来访问和遍历集合
方法 | 描述 | 返回类型 |
---|---|---|
hasNext() | 如果迭代中还有更多元素,则返回 true | boolean |
next() | 返回迭代中的下一个元素 | T |
remove() | 删除由 next() 返回的最后一个元素 | void |
注意:next()
方法使用迭代器项的类型作为其返回值。此类型在表中称为 T。
Iterator
接口提供方法来访问和遍历集合
方法 | 描述 | 返回类型 |
---|---|---|
hasNext() | 如果迭代中还有更多元素,则返回 true | boolean |
next() | 返回迭代中的下一个元素 | T |
remove() | 删除由 next() 返回的最后一个元素 | void |
注意:next()
方法使用迭代器项的类型作为其返回值。此类型在表中称为 T。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]