• 2021-04-14
    读程序,写出和程序输出格式一致的输出结果。
    public class J_Test {
    public static void mb_method(int i) {
    try {
    if(i == 1)
    throw new Exception();
    System.out.print("1");
    }
    catch(Exception ex) {
    System.out.print("2");
    return;
    }
    finally {
    System.out.print("3");
    }
    System.out.print("4");
    }
    public static void main(String[] args) {
    mb_method(0);
    mb_method(1);
    }
    }
  • 举一反三