JAVA的extends用法

來源:互聯網
上載者:User

      理解繼承是理解物件導向程式設計的關鍵。在Java中,通過關鍵字extends繼承一個已有的類,被繼承的類稱為父類(超類,基類),新的類稱為子類(衍生類別)。在Java中不允許多繼承。
(1)繼承

class Animal{void eat(){System.out.println("Animal eat");}void sleep(){System.out.println("Animal sleep");}void breathe(){System.out.println("Animal breathe");}}class Fish extends Animal{}public class TestNew {public static void main(String[] args) {// TODO Auto-generated method stubAnimal an = new Animal();Fish fn = new Fish();an.breathe();fn.breathe();}}

在eclipse執行得:
Animal breathe!
Animal breathe!
.java檔案中的每個類都會在檔案夾bin下產生一個對應的.class檔案。執行結果說明衍生類別繼承了父類的所有方法。

(2)覆蓋

class Animal{void eat(){System.out.println("Animal eat");}void sleep(){System.out.println("Animal sleep");}void breathe(){System.out.println("Animal breathe");}}class Fish extends Animal{void breathe(){System.out.println("Fish breathe");}}public class TestNew {public static void main(String[] args) {// TODO Auto-generated method stubAnimal an = new Animal();Fish fn = new Fish();an.breathe();fn.breathe();}}

執行結果:

Animal breathe!
Fish bubble

在子類中定義一個與父類同名,傳回型別,參數類型均相同的一個方法,稱為方法的覆蓋。方法的覆蓋發生在子類與父類之間。另外,可用super提供對父類的訪問。

 

參考原文:http://tieba.baidu.com/f?kz=295170500

參考原文:http://zhidao.baidu.com/question/25517733.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.