国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

java入門第二季--多態--java中的多態

codercao / 2918人閱讀

摘要:中的多態引用的多態父類的引用是可以指向子類對象報錯方法多態動物具有吃的能力狗具有吃肉的能力狗具有看門的能力父類的引用是可以指向子類對象報錯

java中的多態

引用的多態
/javaDemo4/src/com/imooc/Animal.java
package com.imooc;

public class Animal {
    
}
/javaDemo4/src/com/imooc/Dog.java
package com.imooc;

public class Dog extends Animal {

}
/javaDemo4/src/com/imooc/Initail.java
package com.imooc;

public class Initail {

    public static void main(String[] args) {

        Animal obj1 = new Animal();
        Animal obj2 = new Dog();  //父類的引用是可以指向子類對象
        //Dog obj3 = new Animal();  //報錯


    }

}
方法多態
/javaDemo4/src/com/imooc/Animal.java
package com.imooc;

public class Animal {
    public void eat() {
        System.out.print("動物具有吃的能力");
    }
}
/javaDemo4/src/com/imooc/Dog.java
package com.imooc;

public class Dog extends Animal {
    public void eat() {
        System.out.print("狗具有吃肉的能力");
    }
    public void watchDoor() {
        System.out.print("狗具有看門的能力");
    }
}
/javaDemo4/src/com/imooc/Initail.java
package com.imooc;

public class Initail {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Animal obj1 = new Animal();
        Animal obj2 = new Dog();  //父類的引用是可以指向子類對象
        //Dog obj3 = new Animal();  //報錯
        Animal obj3 = new Cat();
        obj1.eat();
        
        obj2.eat();
        obj3.eat();
//        obj2.watchDoor();
    }

}

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/73146.html

相關文章

  • java門第二季--多態--多態中的引用類型轉換

    摘要:多態中的引用類型轉換代碼自動類型提升,向上類型轉換向下類型轉換強制類型轉型無法進行類型轉換 多態中的引用類型轉換 showImg(https://segmentfault.com/img/bVbnEal?w=1166&h=597); showImg(https://segmentfault.com/img/bVbnEaq?w=1178&h=606); 代碼 /javaDemo4/src...

    gself 評論0 收藏0
  • java門第二季--多態--java中的接口

    摘要:中的接口實例智能手機和都有玩游戲的功能代碼具有玩游玩的功能具有玩游玩的功能 java中的接口 showImg(https://segmentfault.com/img/bVbnEzV?w=1194&h=621); showImg(https://segmentfault.com/img/bVbnEzX?w=1192&h=615); showImg(https://segmentfaul...

    Doyle 評論0 收藏0
  • java門第二季--多態--java中的抽象類

    摘要:中的抽象類代碼實現通過鍵盤來打電話通過鍵盤來打短信通過語音來打電話通過語音來發短信運行 java中的抽象類 showImg(https://segmentfault.com/img/bVbnEiG?w=1189&h=613); showImg(https://segmentfault.com/img/bVbnEiH?w=1214&h=620); showImg(https://segm...

    hosition 評論0 收藏0
  • java門第二季--繼承--java中的繼承初始化順序

    摘要:中的繼承初始化順序父類和子類年齡動物可以吃東西類執行了年齡狗可以吃東西類執行了對象的屬性和構造方法年齡動物可以吃東西類執行了的 java中的繼承初始化順序 showImg(https://segmentfault.com/img/bVbnBI1?w=1277&h=671); showImg(https://segmentfault.com/img/bVbnBKG?w=811&h=427...

    CoorChice 評論0 收藏0
  • java門第二季--繼承--java中的方法重寫

    java中的方法重寫 showImg(https://segmentfault.com/img/bVbnBEj?w=1260&h=668); 重寫前 showImg(https://segmentfault.com/img/bVbnBEu?w=347&h=158); /javaDemo3/src/com/imooc/Animal.java package com.imooc; public cl...

    Cc_2011 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<