java的for循环中遇到异常抛出后继续循环执行

  • @Testpublic void loopTryCatchTest() throws Exception {Map a = new HashMap();a.put("a", "1");a.put("b", null);a.put("c", "3");for (Map.Entry moEntry : a.entrySet()) {try{boolean flag = moEntry.getValue().equals("1");System.out.println(moEntry.getKey() + "," + moEntry.getValue() + "," + flag);} catch(Exception e){System.out.println("异常跳出" + e);      //continue;--- 不需要写continue,因为写不写,都会继续循环,不会异常后直接退出的。}}}执行结果:a,1,true异常跳出java.lang.NullPointerExceptionc,3,false网址:yii666.com<网址:yii666.com文章来源地址:https://www.yii666.com/article/543018.html
  • 如果try包在for循环外面,则无法达到预期效果,遇到异常抛出,被catch住后,循环无法继续执行。

  • @Testpublic void loopTryCatchTest() throws Exception {Map a = new HashMap();a.put("a", "1");a.put("b", null);a.put("c", "3");try {for (Map.Entry moEntry : a.entrySet()) { boolean flag = moEntry.getValue().equals("1"); System.out.println(moEntry.getKey() + "," + moEntry.getValue() + "," + flag);}}catch (Exception e) {  System.out.println("异常跳出" + e);  }}

———————————————————————————–

offer突击训练营简介:

1:针对不知道怎么面试,面试没有信心的小伙伴,我们会给你一个offer保障。

2:我们会监督你15-20天内把面试体系技术点掌握至少7成,这样足够你去找到满意的工作了。

3:我们是面向面试学习指导,不会带你们去写代码,会把项目真实开发的迭代过程和技术细节如何实现业务功能都详细教清楚,你能在面试中流畅表达清楚就行了,项目经验你不用担心(技术老师提供的真实项目经验肯定拿的出手),自己学和别人带着系统学,效率完全不一样。

详情请点击这里:offer突击训练营,给你一个offer的保障,求职跳槽的看过来!