在Java流中,PEEK真的只用于调试吗?我正在阅读有关Java流的内容,并在进行过程中发现新的东西。我发现的新发现之一是peek()功能。我在peek上读到的几乎所有东西都说它应该用来调试您的流。如果我有一个Stream,其中每个帐户都有一个用户名、密码字段和一个login()和loggedIn()方法。我也有Consumer<Account> login = account -> account.login();和Predicate<Account> loggedIn = account -> account.loggedIn();为什么会这么糟?List<Account> accounts; //assume it's been setupList<Account> loggedInAccount = accounts.stream()
.peek(login)
.filter(loggedIn)
.collect(Collectors.toList());据我所知,这完全是它想要做的。它;接受一个帐户列表尝试登录到每个帐户过滤掉任何未登录的帐户将登录帐户收集到新列表中。做这种事有什么坏处?有什么理由不让我继续吗?最后,如果不是这个解决方案,那又是什么呢?最初的版本使用了.filter()方法,如下所示;.filter(account -> {
account.login();
return account.loggedIn();
})
3 回答
慕娘9325324
TA贡献1783条经验 获得超4个赞
不要以意外的方式使用API,即使它实现了您的直接目标。
forEach
accounts
peek
forEach
peek
forEach
accounts.forEach(a -> a.login());List<Account> loggedInAccounts = accounts.stream() .filter(Account::loggedIn) .collect(Collectors.toList());
梦里花落0921
TA贡献1772条经验 获得超6个赞
return list.stream().map(foo->foo.getBar()) .peek(bar->bar.publish("HELLO")) .collect(Collectors.toList());
List<Bar> bars = list.stream().map(foo->foo.getBar()).collect(Collectors.toList());bars.forEach(bar->bar.publish("HELLO"));return bars;
添加回答
举报
0/150
提交
取消