實驗二 繼承與接口實驗.doc

實驗二 繼承與接口實驗.doc

ID:56777160

大?。?4.50 KB

頁數(shù):7頁

時間:2020-07-09

實驗二   繼承與接口實驗.doc_第1頁
實驗二   繼承與接口實驗.doc_第2頁
實驗二   繼承與接口實驗.doc_第3頁
實驗二   繼承與接口實驗.doc_第4頁
實驗二   繼承與接口實驗.doc_第5頁
資源描述:

《實驗二 繼承與接口實驗.doc》由會員上傳分享,免費在線閱讀,更多相關內(nèi)容在教育資源-天天文庫。

1、實驗二繼承與接口一、實驗目的1.掌握類的繼承機制。2.熟悉類中成員變量和方法的訪問控制。3.掌握接口與包的使用,熟悉方法的多態(tài)性。二、實驗內(nèi)容1.定義父類及子類,在子類中重寫父類的方法2.練習接口與包的使用三、.實驗步驟與要求第1題繼承編寫一個Java應用程序,除了主類外,該程序中還有4個類:People,ChinaPeople,AmericanPeople和BeijingPeople類。此四個類的繼承關系如下圖所示:要求ChinaPeople,American類均重寫其父類People類的speakHello,averageHeight,averageWeig

2、ht方法,BeijingPeople類重寫其父類ChinaPeople類的speakHello,averageHeight,averageWeight方法。People類變量方法protecteddoubleheightpublicvoidspeakHello()protecteddoubleweightpublicvoidaverageHeight()publicvoidaverageWeight()ChinaPeople類方法:publicvoidchinaGongfu()AmericanPeople類方法:PublicvoidamericanBoxing(

3、)BeijingPeople類方法:PublicvoidbeijingOpera()源代碼:packagepeople;classpeople{protecteddoubleheight;protecteddoubleweight;publicvoidspeakHello()//問候語的函數(shù){System.out.println("hello");}publicvoidaverageHeight()//人們的平均身高{height=170;System.out.println(+height);}publicvoidaverageWeight()//人們的平均體

4、重{weight=120;System.out.println(+weight);}}classChinapeopleextendspeople{publicvoidspeakHello(){System.out.println("你好");}publicvoidaverageHeight(){height=172;System.out.println(+height);}publicvoidaverageWeight(){weight=115;System.out.println(+weight);}publicvoidchinaGongfu()//中國功夫的

5、方法{System.out.println("中國功夫");}}classAmericanpeopleextendspeople{publicvoidspeakHello(){System.out.println("hello");}publicvoidaverageHeight(){height=180;System.out.println(+height);}publicvoidaverageWeight(){weight=150;System.out.println(+weight);}publicvoidamericanBoxing()//美國拳擊的方法

6、{System.out.println("americanBoxing");}}classBeijingpeopleextendsChinapeople{publicvoidspeakHello(){System.out.println("北京歡迎你");}publicvoidaverageHeight(){height=168;System.out.println(+height);}publicvoidaverageWeight(){weight=125;System.out.println(+weight);}}classExample{publicsta

7、ticvoidmain(String[]args){peoplep=newpeople();Chinapeoplec=newChinapeople();Americanpeoplea=newAmericanpeople();Beijingpeopleb=newBeijingpeople();p.averageHeight();p.averageWeight();p.speakHello();c.averageHeight();c.averageWeight();c.chinaGongfu();c.speakHello();a.averageHeight();a.

8、averageWeigh

當前文檔最多預覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當前文檔最多預覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學公式或PPT動畫的文件,查看預覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權歸屬用戶,天天文庫負責整理代發(fā)布。如果您對本文檔版權有爭議請及時聯(lián)系客服。
3. 下載前請仔細閱讀文檔內(nèi)容,確認文檔內(nèi)容符合您的需求后進行下載,若出現(xiàn)內(nèi)容與標題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。