黑马程序员技术交流社区

标题: 求分析程序的执行过程 [打印本页]

作者: ninety_奶挺    时间: 2015-12-28 22:39
标题: 求分析程序的执行过程
  1. package com.heima.exception;

  2. public class Demo_Finally {

  3.         /**
  4.          * try...catch...finally 执行流程测试
  5.          */
  6.         public static void main(String[] args) {
  7.                 method(1);
  8.                 method(2);
  9.                 function(1);
  10.                 function(2);
  11.                 System.out.println(s);
  12.         }
  13.        
  14.         public static String s = "";
  15.        
  16.         public static void method(int i) {
  17.                 try {
  18.                         if(i == 1) {
  19.                                 throw new Exception();
  20.                         }
  21.                         s += "1";
  22.                 } catch (Exception e) {
  23.                         s += "2";
  24.                         return;
  25.                 } finally {
  26.                         s += "3";
  27.                 }
  28.                         s += "4";
  29.         }
  30.        
  31.         public static String function(int i) {
  32.                 try {
  33.                         if(i == 1) {
  34.                                 throw new Exception();
  35.                         }
  36.                         s += "1";
  37.                         return s;
  38.                 } catch (Exception e) {
  39.                         s += "2";
  40.                         return s;
  41.                 } finally {
  42.                         s += "3";
  43.                 }
  44.         }
  45.        
  46. }
复制代码


作者: anythingOK    时间: 2015-12-28 22:45
呃  坐等大神吧




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2