会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
含雪幸福
导航
博客园
首页
新随笔
联系
订阅
管理
公告
2021年5月10日
jdk8中的forEach使用return执行下一次遍历
摘要: jdk8中的forEach使用return执行下一次遍历 在使用foreach()处理集合时不能使用break和continue这两个方法, 也就是说不能按照普通的for循环遍历集合时那样根据条件来中止遍历, 而如果要实现在普通for循环中的效果时,可以使用return来达到, 也就是说如果你在一个
阅读全文
posted @ 2021-05-10 15:25 含雪幸福
阅读(1219)
评论(0)
推荐(0)
编辑
/*生成博客目录的CSS*/ #uprightsideBar{ font-size:12px; font-family:Arial, Helvetica, sans-serif; text-align:left; position:fixed;/*将div的位置固定到距离top:50px,right:0px的位置,这样div就会处在最右边的位置,距离顶部50px*/ top:50px; right:0px; width: auto; height: auto; } #sideBarTab{ float:left; width:30px; border:1px solid #e5e5e5; border-right:none; text-align:center; background:#ffffff; } #sideBarContents{ float:left; overflow:auto; overflow-x:hidden;!important; width:200px; min-height:108px; max-height:460px; border:1px solid #e5e5e5; border-right:none; background:#ffffff; } #sideBarContents dl{ margin:0; padding:0; } #sideBarContents dt{ margin-top:5px; margin-left:5px; } #sideBarContents dd, dt { cursor: pointer; } #sideBarContents dd:hover, dt:hover { color:#A7995A; } #sideBarContents dd{ margin-left:20px; }