很多初學者可能搞不清楚static方法的用法,這裡我說下自己的理解:
#static方法的呼叫不需要依賴創造類別物件
由於不需要建立對象,所以static方法不使用this關鍵字
#靜態方法只能呼叫靜態成員變數和靜態方法,因為普通方法需要透過建立物件來調用,這點與靜態方法衝突
普通方法中可以調用靜態成員變數和靜態方法,可以直接透過 類別名稱.靜態方法 的形式進行呼叫
靜態程式碼區塊,在類別載入的時候就執行且只執行一次
道理說完了,看個實際的例子:
class Person{ static{ System.out.println("person static"); } public Person(String str) { System.out.println("person "+str); } } public class Test { Person person = new Person("Test"); public Test() { System.out.println("test constructor"); } static{ System.out.println("test static 1"); } public static void main(String[] args) { new MyClass(); } static{ System.out.println("test static 2"); } } class MyClass extends Test { Person person = new Person("MyClass"); static{ System.out.println("myclass static"); } public MyClass() { System.out.println("myclass constructor"); } }
先猜一下他的輸出,再來對比一下,看看哪裡不對,加深理解
test static 1 test static 2 myclass static person static person Test test constructor person MyClass myclass constructor
首先載入Test類,其中包含兩個靜態程式碼區塊,則依編寫順序依序輸出test static 1、test static 2
main方法中,new了一個MyClass,此時載入MyClass類,MyClass類別中也有靜態程式碼區塊,則輸出myclass static
#MyClass類別繼承自Test類,Test類別已經載入過,則不會再輸出靜態程式碼區塊中內容
載入完畢,開始執行Test類,在執行Person person = new Person("Test")時Person類別還未被加載,載入時發現Person類別也有靜態程式碼區塊,則輸出person static
#執行Person的建構函數,輸出person Test
#繼續執行Test,進入main方法,new MyClass(),然而MyClass繼承自Test類,先執行Test類別建構方法,輸出test constructor
繼續執行MyClass,Person person = new Person("MyClass"),執行Person類別建構方法,輸出person MyClass
myclass constructor###############執行完畢############根據這些我總結出來以下執行順序:### ###靜態程式碼區塊->父類別建構方法->子類別建構方法######建構方法與new物件同時存在時,先執行new物件的建構方法。 (此時注意不要產生循環嵌套,造成記憶體溢出)######相關文章:##########淺聊Java中父類別與子類別的載入順序詳解###### #######java的繼承,子類別是否繼承父類別的建構子######以上是java中static關鍵字、父類別子類別載入執行順序解析的詳細內容。更多資訊請關注PHP中文網其他相關文章!