java 链式方法,Java 8链式方法参考?

Suppose there is a typical Java Bean:

class MyBean {

void setA(String id) {

}

void setB(String id) {

}

List getList() {

}

}

And I would like to create a more abstract way of calling the setters with the help of a BiConsumer:

Map> map = ...

map.put(SomeEnum.A, MyBean::setA);

map.put(SomeEnum.B, MyBean::setB);

map.put(SomeEnum.List, (myBean, id) -> myBean.getList().add(id));

Is there a way to replace the lambda (myBean, id) -> myBean.getList().add(id) with a chained method reference, something like (myBean.getList())::add or myBean::getList::add or something else?

解决方案

No, method references do not support chaining. In your example it wouldn’t be clear which of the two methods ought to receive the second parameter.

But if you insist on it…

static BiConsumer filterFirstArg(BiConsumer c, Function f) {

return (t,u)->c.accept(f.apply(t), u);

}

BiConsumer c = filterFirstArg(List::add, MyBean::getList);

The naming of the method suggest to view it as taking an existing BiConsumer (here, List.add) and prepend a function (here, MyBean.getList()) to its first argument. It’s easy to imagine how an equivalent utility method for filtering the second argument or both at once may look like.

However, it’s mainly useful for combining existing implementations with another operation. In your specific example, the use site is not better than the ordinary lambda expression

BiConsumer c = (myBean, id) -> myBean.getList().add(id);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值