怎么在Java8中给forEach()函数提供index值

怎么在Java8中给forEach()函数提供index值?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

Java2遍历集合

遍历Collection的代码,可以是采用Iterator接口,通过next()遍历。如:

怎么在Java8中给forEach()函数提供index值

List<String>list=Arrays.asList("Hi","I","am","Henry.Yao");
//此处已经用到了泛型,不能算是纯粹的Java2代码,仅作Iterator示范
for(Iterator<String>it=list.iterator();it.hasNext();){
Stringitem=it.next();
System.out.println("listItem="+item);
}

输出:

listItem = HilistItem = IlistItem = amlistItem = Henry.Yao

Java5遍历集合

在Java5中,提供了增强的for循环,如:

List<String>list=Arrays.asList("Hi","I","am","Henry.Yao");
for(Stringitem:list){
System.out.println("listItem="+item);
}

Java8遍历集合

在Java8中,通过Lambda表达式提供了更简洁的编程方式,如:

list.forEach(item->{
System.out.println("listItem="+item);
});

需同时提供index,咋办?

操作集合元素item的同时,如果还需要同时提供index值,咋办?思考后,我们可能大都写出了如下的代码,同时心有不甘:

List<String>list=Arrays.asList("Hi","I","am","Henry.Yao");
for(intindex;index<list.size();index++){
Stringitem=list.get(i);
System.out.println("list["+index+"]="+item);
}

输出:

list[0] = Hi,list[1] = Ilist[2] = amlist[3] = Henry.Yao

期望的遍历模式

因为,如下的模式才是我们期望的模式

list.forEach((item,index)->{
System.out.println("listItem="+item);
});//CompileERROR

这只是期望。实际上,Jdk8并没有提供该函数,直至Jdk11也均没有提供该函数。

通过BiConsumer包装Consumer实现

“没有工具,我们制造工具” 定义如下的工具方法,基于这个工具方法,我们就能在遍历集合,同时提供item和index值:

//工具方法
publicstatic<T>Consumer<T>consumerWithIndex(BiConsumer<T,Integer>consumer){
classObj{
inti;
}
Objobj=newObj();
returnt->{
intindex=obj.i++;
consumer.accept(t,index);
};
}

这样的业务代码,是我期望的!

基于该工具方法,便可轻松编写如下业务代码,清晰、简洁:

list.forEach(LambdaUtils.consumerWithIndex((item,index)->{
System.out.println("list["+index+"]="+item);
}));

思考过程

这个工具方法的设计过程,也是参考借鉴了distinctByKey,如图:

//工具方法
publicstatic<T>Predicate<T>distinctByKey(Function<?superT,?>keyExtractor){
Map<Object,Boolean>seen=newConcurrentHashMap<>();
returnt->Objects.isNull(seen.putIfAbsent(keyExtractor.apply(t),Boolean.TRUE));
}
//业务代码
//从人员列表中过滤出一个子集(每个部门选一个人)
employees.stream().filter(distinctByKey(Employee::getDeptCode)).collect(toList());

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注恰卡编程网行业资讯频道,感谢您对恰卡编程网的支持。

发布于 2021-03-17 20:53:58
收藏
分享
海报
0 条评论
166
上一篇:CSS中怎么使用径向渐变实现卡券效果 下一篇:怎么在Android中使用RecyclerView实现一个图标拖拽排序功能
目录

    推荐阅读

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码