雖然說java中的面向?qū)ο蟮母拍畈欢?,但是具體的細(xì)節(jié)還是值得大家學(xué)習(xí)研究,java中的繼承實際上就是子類擁有父類所有的內(nèi)容(除私有信息外),并對其進(jìn)行擴展。下面是我的筆記,主要包含以下一些內(nèi)容點:

  • 構(gòu)造方法

  • 重寫和重載

  • final關(guān)鍵字

  • new的背后(內(nèi)存分析)

  • 理解方法調(diào)用

一、構(gòu)造方法
    正如我們所知道的,構(gòu)造方法的方法名與類名相同,主要的作用是實現(xiàn)對實例對象的初始化工作,實際上每個子類的構(gòu)造方法中的第一行默認(rèn)是調(diào)用了父類的構(gòu)造函數(shù),而父類繼續(xù)向上調(diào)用直至Object類,然后返回。

/*這是父類*/public class Base {    public Base(){
        System.out.println("i am the base");
    }
}/*這是子類*/public class Child extends Base {    public Child(){        //super();隱式調(diào)用父類默認(rèn)無參構(gòu)造器
        System.out.println("i am the child");
    }
}/*執(zhí)行程序*/public class Test {    public static void main(String[] args){
        Child c = new Child();      
    }
}
輸出結(jié)果:i am the basei am the child

網(wǎng)友評論