国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

淺談Java方法調(diào)用的優(yōu)先級(jí)問題

瀏覽:6日期:2022-08-23 13:13:34

實(shí)現(xiàn)Java多態(tài)性的時(shí)候,關(guān)于方法調(diào)用的優(yōu)先級(jí):

我們這樣假設(shè)下,super(超類)、this(當(dāng)前類對(duì)象)、show(方法)、object(對(duì)象),方法調(diào)用優(yōu)先順序: ①this.show(object)>②super.show(object)> ③this.show((super)object)>④super.show((super)object)

先看以下代碼

class ParentCls {public String show(ChildA obj){return 'Parent and ChildA';}public String show(ParentCls obj) {return 'Parent';}}

然后寫一個(gè)子類ChildA ,繼承ParentCls :

class ChildA extends ParentCls{public String show(ChildA obj) {return 'ChildA';};public String show(ParentCls obj) {return 'ChildA and Parent';};}

寫一個(gè)子類ChildB,繼承ChildA :

class ChildB extends ChildA{

}

測(cè)試下

public static void main(String[] args) {ParentCls p1 = new ParentCls();ParentCls p2 = new ChildA();ChildA a = new ChildA();ChildB b = new ChildB();System.out.println(p1.show(a));System.out.println(b.show(a));System.out.println(a.show(b));System.out.println(p2.show(a));}

輸出

Parent and ChildAChildAChildAChildA

第一個(gè)輸出,p1是ParentCls的實(shí)例,且類ParentCls中有show(ChildA obj)方法,直接執(zhí)行該方法, ①有效;

第二個(gè)輸出,b是ChildB 的實(shí)例,類ChildB 中沒有show(ChildA obj)方法,①無效,再從ChildB 的父類ChildA查找,ChildA中剛好有show(ChildA obj)方法,②有效;

第三個(gè)輸出,a是ChildA的實(shí)例,b是ChildB的實(shí)例,類ChildA中沒有show(ChildB obj)方法,①無效,再從ChildA的父類ParentCls入手,ParentCls中也沒有show(ChildB obj)方法,②無效,從ChildB的父類入手,(super)ChildB 即是ChildA,所以a.show(b)=>a.show(a),ChildA中剛好有show(ChildA obj)方法,③有效;

④就不作演示,根據(jù)①②③很容易得出結(jié)論;

第四個(gè)輸出,體現(xiàn)Java多態(tài)性,符合①,但是p2是引用類ChildA的一個(gè)對(duì)象 ,ChildA 重寫覆蓋了ParentCls的show()方法,所以執(zhí)行ChildA 的show()方法;

補(bǔ)充知識(shí):Java中關(guān)于靜態(tài)塊,初始化快,構(gòu)造函數(shù)的執(zhí)行順序

代碼如下:

public class ParentDemo { static { System.out.println('this is ParentDemo static'); } { System.out.println('this is ParentDemo code block'); } public ParentDemo() { System.out.println('this is ParentDemo constructor'); }}public class SonDemo extends ParentDemo{ static { System.out.println('this is SonDemo static'); } { System.out.println('this is SonDemo code block'); } public SonDemo() { System.out.println('this is SonDemo constructor'); }}public class TestMain { public static void main(String[] args){ new SonDemo(); }}

輸出結(jié)果:

this is ParentDemo staticthis is SonDemo staticthis is ParentDemo code blockthis is ParentDemo constructorthis is SonDemo code blockthis is SonDemo constructor

由上可見,Java中 靜態(tài)塊中的代碼在類加載時(shí)執(zhí)行,子類繼承父類。會(huì)按照繼承的順序先執(zhí)行靜態(tài)代碼塊。當(dāng)實(shí)例化對(duì)象的時(shí)候,同理會(huì)按照繼承的順序依次執(zhí)行如下代碼:

代碼塊,構(gòu)造函數(shù),當(dāng)父類的執(zhí)行完以后,再執(zhí)行子類。

以上這篇淺談Java方法調(diào)用的優(yōu)先級(jí)問題就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Java
相關(guān)文章:
主站蜘蛛池模板: 泊头市| 沛县| 宁国市| 彭山县| 翁牛特旗| 元氏县| 三台县| 两当县| 六安市| 汉沽区| 东阿县| 张家川| 安福县| 娄底市| 江阴市| 昭觉县| 缙云县| 阆中市| 沙湾县| 临澧县| 开原市| 昌吉市| 溆浦县| 长治县| 澄迈县| 侯马市| 永善县| 贺州市| 外汇| 广元市| 安平县| 凤冈县| 肃南| 蓬莱市| 兴义市| 林周县| 商洛市| 两当县| 德阳市| 三亚市| 滨州市|