Java8 .getMethod()与:: getMethod

时间:2018-11-30 15:29:16

标签: java java-8 functional-programming java-stream

我是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);

1 个答案:

答案 0 :(得分:4)

User::getId是对函数的引用,因此不等同于contains(us.getId())

请参阅-> https://www.codementor.io/eh3rrera/using-java-8-method-reference-du10866vx,以使自己熟悉方法引用。