java关于Map的排序性的一次使用,有序的Map

Posted Angel挤一挤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java关于Map的排序性的一次使用,有序的Map相关的知识,希望对你有一定的参考价值。

关于Map的排序性的一次使用,有序的Map

>>>>>

hashmap是按key的hash码排序的,而treemap是利用comparator 进行key的自然排序的

 

/**
     * 根据商品分类ID
     * 获取长编码,拿到向上的所有父级商品分类ID
     *
     * 根据parentUidList  获取 parentList
     *
     * 迭代parentUid 根据uid 获取在有序List中的 下标
     *
     * 按照[k:v][下标:具体信息]
     * 放入TreeMap 即得到有序的父层商品分类层级信息
     * @param entity
     * @return
     */
    @Override
    public AjaxResult<Map<Integer, GoodsTypeSimpleBean>> findGoodsTypeTree(GoodsType entity) {
        LunaResultBean.checkField(entity,"uid");
        TenementUser tenementUser = RequestData.TENEMENT_USER.get();
        AjaxResult<Map<Integer,GoodsTypeSimpleBean>> res = new AjaxResult<>();
        GoodsType goodsType = goodsTypeService.get(entity.getUid());
        if (goodsType != null && tenementUser.getTenementId().equals(goodsType.getTenementId())){
            String longCode = goodsType.getLangCode();
            List<String> parentUidList = Arrays.asList(longCode.split(":"));
            List<GoodsType> parentList = goodsTypeService.findByUidIn(parentUidList);

            Map<Integer,GoodsTypeSimpleBean> sortMap = new TreeMap<>();
            for (GoodsType type : parentList) {
                GoodsTypeSimpleBean bean = new GoodsTypeSimpleBean();
                bean.setGoodsTypeName(type.getName());
                bean.setOuterCode(type.getOuterCode());

                int index = parentUidList.indexOf(type.getUid())+1;
                sortMap.put(index,bean);
            }

            res.initTrue(sortMap);
        }else {
            res.initFalse("商品分类不存在",LunaResultBean.ERROR_BUSINESS);
        }
        return res;
    }
View Code

 

获取结果如下:

 

以上是关于java关于Map的排序性的一次使用,有序的Map的主要内容,如果未能解决你的问题,请参考以下文章

[C++ STL] map使用详解

Map的有序和无序实现类,与Map的排序

Java中List Set Map 是否有序等总结

Java中List Set Map 是否有序等总结

c++中map是有序的吗

如何禁止STL map 自动排序