11计科本01班 (8)抽象类接口和包

11计科本01班 (8)抽象类接口和包

ID:37826301

大小:388.00 KB

页数:9页

时间:2019-05-31

11计科本01班  (8)抽象类接口和包_第1页
11计科本01班  (8)抽象类接口和包_第2页
11计科本01班  (8)抽象类接口和包_第3页
11计科本01班  (8)抽象类接口和包_第4页
11计科本01班  (8)抽象类接口和包_第5页
资源描述:

《11计科本01班 (8)抽象类接口和包》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、西安思源学院java实验报告实验名称:抽象类借口和包班级:11计算机科学与技术学号:111102020104姓名:指导教师:王振铎实验时间:2013年4月成绩:实验8抽象类,接口一、实验目的1、熟练掌握抽象类abstract的概念。2、熟练掌握接口interface的概念。3、理解面向对象的程序设计方法。二、实验内容(1)定义一个抽象类shape,它包含一个抽象方法getArea(),从shape类派生出rectangle和circle类,这两个类都用getArea()方法计算对象的面积。编写应用程序使用rectan

2、gle和circle类。要求:定义rectangle和circle类的构造方法,初始化成员变量程序如下:abstractclassshape{abstractdoublegetArea();}classrectangleextendsshape{privatedoublewidth;privatedoublelength;publicrectangle(doublewidth,doublelength){this.width=width;this.length=length;}publicdoublegetArea(

3、){returnwidth*length;}}classcircleextendsshape{privatedoubler;publiccircle(doubler){this.r=r;}publicdoublegetArea(){return3.14*r*r;}}classTest{publicstaticvoidmain(Stringargs[]){rectangleR=newrectangle(7,8);System.out.println("长方形的面积:"+R.getArea());circlec=newc

4、ircle(2);System.out.println("圆的面积:"+c.getArea());}}运行结果:(2)学校中有教师和学生两类人,而在职研究生既是教师又是学生。设计两个接口studentinterface和teacherinterface。其中,studentinterface接口包含setFee()和getFee()方法,分别用于设置和获取学生的学费;teacherinterface接口包含setPay()和getPay()方法,分别用于设置和获取教师的工资。定义一个研究生类graduate,实现st

5、udentinterface接口和teacherinterface接口,它的成员变量有name,sex,age,fee,pay。创建一个姓名为“zhangsan”的研究生,统计他的年收入和学费,如果收入减去学费不足2000元,则输出“providealoan”(需要贷款)信息。要求:在graduate中实现各个接口定义的抽象方法。interfaceStudentManageInterface{voidsetFee(intfee);intgetFee();}interfaceTeacherManageInterface

6、{voidsetPay(intpay);intgetPay();}classGraduateimplementsStudentManageInterface,TeacherManageInterface{privateStringname;privateStringsex;privateintage;privateintfee;privateintpay;publicGraduate(Stringname,intfee,intpay){super();this.name=name;this.fee=fee;this.

7、pay=pay;if(this.pay-this.fee<20000)System.out.println("需要贷款!");}publicintgetFee(){returnthis.fee;}publicintgetPay(){returnthis.pay;}publicvoidsetFee(intfee){this.fee=fee;}publicvoidsetPay(intpay){this.pay=pay;}publicStringgetName(){returnname;}publicvoidsetName

8、(Stringname){this.name=name;}publicStringgetSex(){returnsex;}publicvoidsetSex(Stringsex){this.sex=sex;}publicintgetAge(){returnage;}publicvoidsetAge(intage){this.age=age;}pu

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。