【Java】list对象按某个Boolean属性排序

对象属性如下,期望结果是:查询出来的列表,active为true的在前,false的在后。

【Java】list对象按某个Boolean属性排序

实现如下:

    @Override
    public List<TaskNotifyPolicy> findByBelongId(String belongId) {

        List<TaskNotifyPolicy> taskNotifyPolicies = taskNotifyPolicyDao.findByBelongId(belongId);

        if (isEmpty(taskNotifyPolicies)) {
            return null;
        }

        Comparator<TaskNotifyPolicy> comparator = (o1, o2) -> {
            if (o1.getActive() ^ o2.getActive()) {
                return o1.getActive() ? -1 : 1;
            } else {
                return 0;
            }
        };

        taskNotifyPolicies.sort(comparator);

        return taskNotifyPolicies;
    }

效果如下。生效的提醒在前,失效的在后:

【Java】list对象按某个Boolean属性排序

 

【Java】list对象按某个Boolean属性排序【Java】list对象按某个Boolean属性排序 Mr_EvanChen 发布了116 篇原创文章 · 获赞 107 · 访问量 36万+ 私信 关注
上一篇:DEV C++怎么开启氧 气 优 化 加 速 (O2)


下一篇:AI钻石天鹅风格