try { int i = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("in the 'try'"); } catch { Console.WriteLine("in the 'catch'"); } finally { Console.WriteLine("in the 'finally'"); } Console.WriteLine("After the 'fina…
//执行顺序:(优先级从高到低.)静态代码块>mian方法>构造代码块>构造方法. 其中静态代码块只执行一次.构造代码块在每次创建对象是都会执行. //普通代码块:在方法或语句中出现的{}就称为普通代码块.普通代码块和一般的语句执行顺序由他们在代码中出现的次序决定--“先出现先执行” public class CodeBlock01{ public static void main(String[] args){ { int x=3; System.out.println("1…
package com.zxl.staticdemo; public class BlockTest { static { System.out.println("BlockTest静态代码块执行"); } { System.out.println("BlockTest构造代码块执行"); } public BlockTest(){ System.out.println("BlockTest无参构造执行了"); } public static v…