类 CollKit
java.lang.Object
com.iohao.game.common.kit.CollKit
集合相关工具
- 作者:
- 渔民小镇
- 日期:
- 2022-01-14
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明<T> Optional<T> groupCounting(List<Integer> list) 分组统计booleanisEmpty(Collection<?> collection) booleannotEmpty(Collection<?> collection)
-
构造器详细资料
-
CollKit
public CollKit()
-
-
方法详细资料
-
groupCounting
分组统计key is 元素下标 value is 元素下标对应的数量示例 handCards: [11, 11, 11, 21, 46, 33,33, 18, 18, 18, 18] 得到的 map { 11 : 3 18 : 4 21 : 1 33 : 2 46 : 1 }- 参数:
list- 元素列表- 返回:
- map
-
notEmpty
-
isEmpty
-
findAny
-