类 CollKit

java.lang.Object
com.iohao.game.common.kit.CollKit

public class CollKit extends Object
集合相关工具
作者:
渔民小镇
日期:
2022-01-14
  • 构造器详细资料

    • CollKit

      public CollKit()
  • 方法详细资料

    • groupCounting

      public Map<Integer,Integer> groupCounting(List<Integer> list)
      分组统计
           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

      public boolean notEmpty(Collection<?> collection)
    • isEmpty

      public boolean isEmpty(Collection<?> collection)
    • findAny

      public <T> Optional<T> findAny(Set<T> set)