我是Java8的新手,并且创建了这段运行良好的代码
userService.getClient().findUsersByMarkets(marketIds)
.stream()
.filter(us -> !alreadyNotifiedUserIds.contains(us.getId()))
.forEach(usersToBeNotified::add);
但是根据我的理解,这段代码也应该可以正常工作,但事实并非如此,我想知道为什么
userService.getClient().findUsersByMarkets(marketIds)
.stream()
.filter(us -> !alreadyNotifiedUserIds.contains(User::getId))
.forEach(usersToBeNotified::add);
答案 0 :(得分:4)
User::getId
是对函数的引用,因此不等同于contains(us.getId())
。
请参阅-> https://www.codementor.io/eh3rrera/using-java-8-method-reference-du10866vx,以使自己熟悉方法引用。