南郵java實驗二類繼承_第1頁
南郵java實驗二類繼承_第2頁
南郵java實驗二類繼承_第3頁
南郵java實驗二類繼承_第4頁
南郵java實驗二類繼承_第5頁
已閱讀5頁,還剩3頁未讀 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領

文檔簡介

1、才U誨雄意實驗報告(2017/2018學年第1學期)課程名稱JAVA程序設計實驗名稱類、繼承實驗時間2017年12月15日指導單位計算機學院、軟件學院軟件工程系指導教師肖欣欣學生姓名胡君班級學號B專業(yè)軟件工程學院(系)計軟院 實驗名稱類、繼承指導教師肖欣欣實驗類型上機實驗學時2實驗時間2017年12月15日一、實驗目的.掌握類的定義.掌握對象的創(chuàng)建和使用.掌握類的繼承的概念.掌握派生類的定義二、實驗環(huán)境(實驗設備).每位學生配備計算機一臺.計算機需安裝好JDK和氏lipse三、實驗內(nèi)容(將編譯、運行成功后代碼寫入題目空白處)1、(1)定義一個類MyRectangle代表矩形:為矩形定義getL

2、ength方法(獲得矩形的長度)、getWidth方法(獲得矩形的寬度)、setLength方法(設置矩形的長度)、setWidth方法(設置矩形的寬度)、getArea方法(求矩形的面積)和toString方法(顯示矩形的信息)。(2)為矩形派生出一個子類MyCuboid代表長方體:增加getHeight方法(獲取長方體的高度)、setHeight方法(設置長方體的高度)、getVolumn方法(求長方體的體積),并對getArea方法(求長方體的表面積)和toString方法(顯示長方體的信息)進行重寫。packageexample1;publicclass實驗二publicstaticv

3、oidmain(Stringargs)throwsParseExceptionMyRectanglerect=newMyRectangle(6,5);System.out.println(length=+rect.getLength()+”,width=+rect.getWidth()+,area=+rect.getArea();rect.setLength(9);rect.setWidth(4);System.out.println(rect.toString();MyCuboidcub=newMyCuboid(6,5,3);System.out.println(length=+cub.ge

4、tLength()+,width=+cub.getWidth()+,height=+cub.getHeight()+,area=+cub.getArea()+,volume=+cub.getVolume();cub.setLength(14);cub.setWidth(7);cub.setHeight(18);System.out.println(cub.toString();classMyRectangleprivateintlength,width;publicMyRectangle(intlength,intwidth)this.length=length;this.width=widt

5、h;publicintgetLength()returnlength;publicintgetWidth()returnwidth;publicvoidsetLength(intlength)this.length=length;publicvoidsetWidth(intWidth)this.width=Width;publicintgetArea()returnwidth*length;publicStringtoString()returnlength=+length+,width=+width+,area=+width*length;classMyCuboidextendsMyRect

6、angleprivateintheight;publicMyCuboid(intlength,intwidth,intheight)super(length,width);this.height=height;publicvoidsetHeight(intheight)this.height=height;publicintgetHeight()returnheight;publicintgetVolume()returngetLength()*getWidth()*height;publicintgetArea()return2*(getLength()*getWidth()+getLeng

7、th()*height+getWidth()*height);publicStringtoString()returnlength=+getLength()+,width=+getWidth()+,height=+height+,area=+getArea()+,volume=+getVolume();(1)聲明一個類:People。具體要求如下:聲明私有的數(shù)據(jù)成員:pName(姓名)、pSex(性別)、pBirth(出生日期);提示:pBirth成員使用java.util.Calendar類型。定義必要的構造方法;定義用于修改數(shù)據(jù)成員的setName、setSex、setBirth方法;定義

8、用于讀取數(shù)據(jù)成員的getName、getSex、getBirth方法;定義輸出People對象信息的toString方法,信息格式:“姓名、性別、年齡:*歲”。(2)聲明一個類:Student。具體要求如下:繼承自People類;聲明私有的數(shù)據(jù)成員:sNo(學號)、sMajor(專業(yè));定義用于修改數(shù)據(jù)成員的setNo、setMajor方法;定義用于讀取數(shù)據(jù)成員的getNo、getMajor方法;重新定義輸出Student對象信息的toString方法,信息格式:”學號、姓名、性別、年齡:*歲、專業(yè)”。(3)聲明一個名為Ex2的類,在這個類的main方法中,用Student類創(chuàng)建一個對象(有關

9、信息:B17010101、張三、男、1999年9月9日、軟件工程),并使用toString方法輸出該學生信息。packageexamplel;importjava.text.ParseException;importjava.text.SimpleDateFormat;importjava.util.Calendar;importjava.util.Date;publicclassEx2publicstaticvoidmain(Stringargs)throwsParseExceptionCalendarca=Calendar.getInstance();ca.set(1999,10,9);S

10、tudentstu=newStudent(張三,男,ca,B17010101,軟件工程)System.out.println(stu.toString();classPeopleprivateStringpName,pSex;privateCalendarpBirth;publicPeople(Stringname,Stringsex,Calendarbirth)pName=name;pSex=sex;pBirth=birth;publicvoidsetName(Stringname)pName=name;publicvoidsetSex(Stringsex)pSex=sex;publicvo

11、idsetBirth(Calendarbirth)pBirth=birth;publicStringgetName()returnpName;publicStringgetSex()returnpSex;publicCalendargetBirth()returnpBirth;publicStringtoString()returnpName+、+pSex+、年齡:+(2017-pBirth.get(Calendar.YEAR)+歲”;classStudentextendsPeopleprivateStringsNo,sMajor;publicStudent(Stringname,String

12、sex,Calendarbirth,Stringno,Stringmajor)super(name,sex,birth);sNo=no;sMajor=major;publicvoidsetNo(Stringno)sNo=no;publicvoidsetMajor(Stringmajor)sMajor=major;publicStringgetNo()returnsNo;publicStringgetMajor()returnsMajor;publicStringtoString()returnsNo+、+getName()+、+getSex()+、年齡:+(2017-getBirth().get(Calendar.YEAR)+歲、+sMajor;一開始遇到問題是calendar類型變量ca的值的設置為ca.set(1999,9,9),結果月份是8,后來發(fā)現(xiàn)月份是從0-1

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論