Package | Description |
---|---|
cn.hutool.core.collection |
集合以及Iterator封装,包括集合工具CollUtil,Iterator和Iterable工具IterUtil
|
Modifier and Type | Method and Description |
---|---|
static <T> void |
CollUtil.forEach(Enumeration<T> enumeration,
CollUtil.Consumer<T> consumer)
循环遍历
Enumeration ,使用CollUtil.Consumer 接受遍历的每条数据,并针对每条数据做处理 |
static <T> void |
CollUtil.forEach(Iterable<T> iterable,
CollUtil.Consumer<T> consumer)
循环遍历
Iterable ,使用CollUtil.Consumer 接受遍历的每条数据,并针对每条数据做处理 |
static <T> void |
CollUtil.forEach(Iterator<T> iterator,
CollUtil.Consumer<T> consumer)
循环遍历
Iterator ,使用CollUtil.Consumer 接受遍历的每条数据,并针对每条数据做处理 |
Copyright © 2024. All rights reserved.