第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

java里多態(tài)怎么理解?

java里多態(tài)怎么理解?

D-Link 2017-06-13 23:40:28
查看完整描述

3 回答

已采納
?
望遠(yuǎn)

TA貢獻(xiàn)1017條經(jīng)驗(yàn) 獲得超1032個(gè)贊

多態(tài)分為靜態(tài)多態(tài)--在運(yùn)行前就已經(jīng)確定要執(zhí)行的代碼塊,體現(xiàn)在代碼中就是方法的重載;

public?class?Test{
????public?void?say(){
????System.out.println("Hello?World");
????}
????public?void?say(String?s){
????System.out.println(s);
????}
????public?static?void?main(String[]?args){
????????new?Test().say();//在運(yùn)行前確定了要執(zhí)行的代碼塊
????????//new?Test().say("Hello?World");
????}
}

動(dòng)態(tài)多態(tài)--在運(yùn)行前無法確定要執(zhí)行的代碼塊具體是什么,體現(xiàn)在代碼中就是接口回調(diào)和父類對(duì)象引用指向子類對(duì)象

public?class?Animal{
????public?void?say(){
????System.out.println("動(dòng)物會(huì)叫");
????}
}
class?Dog?extends?Animal{
????public?void?say(){
????????System.out.println("汪汪汪~~");
????}
}
class?Snake?extends?Animal{
????public?void?say(){
????????System.out.println("嘶嘶嘶~~");
????}
}
class?Test{
????public?void?test(Animal?animal){
????????????animal.say();
????????}
????public?static?void?main(){
????????new?Test().test(new?Animal());//輸出動(dòng)物會(huì)叫
????????//new?Test().test(new?Dog());//多態(tài),輸出汪汪汪
????????//new?Test().test(new?Snake());//多態(tài),輸出嘶嘶嘶
????}
}


查看完整回答
1 反對(duì) 回復(fù) 2017-06-14
?
biubiubong

TA貢獻(xiàn)3條經(jīng)驗(yàn) 獲得超0個(gè)贊

在同一個(gè)方法中,由于參數(shù)類型不同導(dǎo)致執(zhí)行結(jié)果不同的現(xiàn)象就是多態(tài)。

查看完整回答
反對(duì) 回復(fù) 2017-06-14
?
大咪

TA貢獻(xiàn)785條經(jīng)驗(yàn) 獲得超332個(gè)贊

程序員分各種語言的程序員,比如 java,python,c,這就是多態(tài)

查看完整回答
反對(duì) 回復(fù) 2017-06-14
  • 3 回答
  • 0 關(guān)注
  • 1544 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)