猿问

如何简单地使用流 api 编写代码

我有以下课程:


@Getter

public class SomeClass implements Serializable {

    private LocalDate date;

    private String smth;

    List<PairKeyValue> quotaParams;

}

类 PairKeyValue 只是:


@Getter

public class PairKeyValue implements Serializable {


    private String key;

    private String value;

}

我想做以下事情:


1) 检查 inSomeClass's日期是否等于 sysdate 然后检查 in 下key="somekey"的值list<PairKeyValue>是否等于 1 ( somekey = 1) 然后将其留在列表中。


2) 检查 in SomeClass's dateNOT 是否等于sysdate然后检查 in 下key="somekey"的值List<PairKeyValue>是否等于 0 ( somekey = 0) 然后将其留在列表中。


3)并忽略其他值。


所以最后我需要一个仅包含当前值的过滤列表SomeClass。


我有我的认识,但我不喜欢它不只使用流 API:


availableQuotes = ArrayList();


 if (CollectionUtils.isNotEmpty(availableQuotes)) {

        availableQuotes = availableQuotes

                .stream()

                .filter(this::checkDate).collect(toList());

    }


    private boolean checkDate (SomeClass someClass){

        if (someClass.getDate().equals(LocalDate.now())) {

            return checkDuration(someClass, "0");

        } else {

            return checkDuration(someClass, "1");

        }

    }


    private boolean checkDuration (SomeClass someClass, String param){

        List<PairKeyValue> quotaParams = someClass.getPairKeyValues().stream()

                .filter(spKeyValue -> spKeyValue.getKey().equals("duration"))

                .filter(spKeyValue -> spKeyValue.getValue().equals(param))

                .collect(toList());

        return (CollectionUtils.isNotEmpty(quotaParams));

    }

我知道它看起来很糟糕,而且我知道它可以更具可读性,所以请帮忙。


尚方宝剑之说
浏览 80回答 1
1回答

大话西游666

如果我正确理解了您的问题,则可以将最后两个功能恢复为以下内容:availableQuotes = availableQuotes.stream()&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .filter(availableQuote -> availableQuote.getQuotaParams().stream()&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .anyMatch(quotaParam -> quotaParam.getKey().equals("duration")&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; && quotaParam.getValue().equals(availableQuote.getDate().equals(LocalDate.now()) ? "0" : "1")))&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .collect(Collectors.toList());我主要把你的代码重新排列成一个过滤器。
随时随地看视频慕课网APP

相关分类

Java
我要回答