java類加載順序和創建對象的流程詳細分析

實例問題 實例代碼 Parent類   1 package mytest.javaBase; 2 3 public class Parent { 4 int a = 10; 5 static int b = 11; 6 // 靜態代碼塊 7 static { 8 System.out.println("Parent靜態代碼塊:b=" + b); 9 b++; 10 } 11 // 代碼塊 12
相關文章
相關標籤/搜索