【java】程式初始化順序

來源:互聯網
上載者:User

標籤:father   public   java   程式   而且   

  執行個體化對象時,對象所在類的所有成員變數要先進行初始化,所有類成員完成初始化後,才會調用對象所在類的建構函式建立對象。

  初始化順序的三個原則:

(1)靜態優先於非靜態

  無論是對象還是變數,靜態初始化順序都要優先於非靜態,而且靜態對象或者變數只初始化一次,而非靜態對象或變數可能初始化多次

(2)父類優先於子類

(3)無論變數定義怎樣散佈於方法中,成員變數的初始化順序與變數定義的順序相同,並且在任何方法(包括建構函式)被調用之前先初始化

  執行順序:

父類靜態變數 --> 父類靜態代碼塊 --> 子類靜態變數--> 子類靜態代碼塊 --> 父類非靜態變數 --> 父類非靜態代碼塊 --> 父類建構函式 --> 子類非靜態變數 --> 子類非靜態代碼塊 --> 子類建構函式


例:

class father{    static    {        System.out.println("hera-1");      }    public father()    {        System.out.println("hera-2");    }    static    {        System.out.println("hera-3");    }}class son extends father{    static{        System.out.println("hera-4");    }    public sun(){        System.out.println("hera-5");    }}public class staticc{    public static void main(String[] args)    {        System.out.println("hera-6");        new son();        System.out.println("hera-7");    }}

輸出:

hera-6
hera-1
hera-3
hera-4
hera-2
hera-5
hera-7

【java】程式初始化順序

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.