跳出if判断

//out是随便起的,也可为haha

out:if(1<2){
           System.out.println("进入第一步 1<2");

    if(2<3){
        System.out.println("进入2<3, 现在要结束!");
       break out;
    }

    System.out.println("会执行这个吗?");
  }
  System.out.println("if外的代码");

执行的结果为:

进入第一步 1<2

进入2<3, 现在要结束!

if外的代码

上一篇:黄聪:jquery mobile使用form进行post提交表单没有反应,显示空白页解决方案


下一篇:http://src.chromium.org/svn/ 定制chrome浏览器教程及源码