java 迭代函数,使用Java8将数组迭代转换为Lambda函数

I am trying to convert to Lambda function

So far I am able to convert the above code to lambda function like as shown below

Stream.of(acceptedDetails, rejectedDetails)

.filter(list -> !isNull(list) && list.length > 0)

.forEach(new Consumer() {

public void accept(Object acceptedOrRejected) {

String id;

if(acceptedOrRejected instanceof EmployeeValidationAccepted) {

id = ((EmployeeValidationAccepted) acceptedOrRejected).getId();

} else {

id = ((EmployeeValidationRejected) acceptedOrRejected).getAd().getId();

}

if(acceptedOrRejected instanceof EmployeeValidationAccepted) {

dates1.add(new Integer(id.split("something")[1]));

Integer empId = Integer.valueOf(id.split("something")[2]);

empIds1.add(empId);

} else {

dates2.add(new Integer(id.split("something")[1]));

Integer empId = Integer.valueOf(id.split("something")[2]);

empIds2.add(empId);

}

}

});

But still my goal was to avoid repeating the same logic and also to convert to Lambda function, still in my converted lambda function I feel its not clean and efficient.

This is just for my learning aspect I am doing this stuff by taking one existing code snippet.

Can anyone please tell me how can I improvise the converted Lambda function

解决方案

A similar approach as @roookeee already posted with but maybe slightly more concise would be to store the mappings using mapping functions declared as :

Function extractEmployeeId = empId -> Integer.valueOf(empId.split("-")[2]);

Function extractDate = empId -> new BigInteger(empId.split("-")[1]);

then proceed with mapping as:

Map acceptedDetailMapping = Arrays.stream(acceptedDetails)

.collect(Collectors.toMap(a -> extractEmployeeId.apply(a.getId()),

a -> extractDate.apply(a.getId())));

Map rejectedDetailMapping = Arrays.stream(rejectedDetails)

.collect(Collectors.toMap(a -> extractEmployeeId.apply(a.getAd().getId()),

a -> extractDate.apply(a.getAd().getId())));

Hereafter you can also access the date of acceptance or rejection corresponding to the employeeId of the employee as well.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值