类的继承与封装_第1页
类的继承与封装_第2页
类的继承与封装_第3页
类的继承与封装_第4页
类的继承与封装_第5页
已阅读5页,还剩2页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

JAVA程序设计实验报告姓 名霍奋伟学号10 班级1420552成绩设备名称及软件环境IDE&1实验名称类的继承与封装实验日期2016.4.20一.实验内容类的继承与封装:定义抽象类Shape(形状)其中有抽象方法用来求某形状的周长和面积;定义Shape类的子类Circle(圆形)、Triangle(三角形)、Rect(矩形)其中包括该形状的位置、大小信息并实现求其周长和面积的方法。假设当前有圆心为(30,70)半径为50的圆,左上角坐标为(20,200),水平宽度为120,垂直高度为80的矩形,以及三个顶点坐标分别为(200,200)、(300,400)、(150,350)的三角形,请在控制台输出每个形状的相关信息,及所有形状的周长和面积的和。接口的定义与实现:通过接口和实现接口的类来完成上一题目。二.重点及难点类、类的数据成员和成员方法的定义与实现;抽象类与类的继承;接口与接口的实现public、private、static、final、abstract等修饰符的作用。三•理论分析或算法分析在接口中定义两个函数,分别实现面积和周长的功能;定义三个类实现其接口,在类中实现面积和周长两个函数。在main函数中测试。[实验步骤]复习有关Java中类、类的继承、接口、接口的实现的相关内容;根据题目要求编写需要的抽象类和其子类;根据题目要求编写相应的main方法完成程序;根据题目要求编写需要的接口和实现该接口的类;根据题目要求编写相应的main方法完成程序;调试代码,完善程序。四•实现方法(含实现思路、程序流程图和源程序列表等)1.抽象类importjava.applet.Applet;importjava.awt.*;importjava.awt.geom.*;abstractclassShapes{publicdoublex,y;publicdoublewidth,height;publicShapes(doublex,doubley,doublewidth,doubleheight){this.x=x;this.y=y;this.width二width;this.height=height;}abstractdoublegetArea();abstractdoublegetPeimeter();}classSquareextendsShapes{publicdoublegetArea(){returnwidth*height;}publicdoublegetPerimeter(){return(2*width+2*height);}publicSquare(doublex,doubley,doublewidth,doubleheight){super(x,y,width,height);}@OverridedoublegetPeimeter(){return0;}}classTriangleextendsShapes{publicdoublec;publicdoublegetArea(){return(0.5*width*height);}publicdoublegetPerimeter(){return(width+height+c);};publicTriangle(doublex,doubley,doublewidth,doubleheight){super(x,y,width,height);c=Math.sqrt(width*width+height*height);}@OverridedoublegetPeimeter(){return0;}}classCricleextendsShapespublicCricle(doublex,doubley,doublewidth,doubleheight){super(x,y,width,height);r=(double)width/2.0;{publicdoubler;publicdoublegetArea(){return(r*r*Math.PI);}publicdoublegetPerimeter(){return(2*Math.PI*r);}publicCricle(doublex,doubley,doublewidth,doubleheight){super(x,y,width,height);r=(double)width/2.0;}@OverridedoublegetPeimeter(){return0;}}publicclasshfwlextendsApplet{SquareBox=newSquare(20,200,120,80);CricleOval二newCricle(30,70,100,100);doubleb=Math.sqrt(Math.pow((150-200),2)+Math.pow((350-200),2));doublec=Math.sqrt(Math.pow((150-300),2)+Math.pow((350-400),2));Triangletri二newTriangle(0,0,b,c);publicvoidpaint(Graphicsg){ //输出长方形的信息g.drawRect(20,200,120,80);g.drawString("BoxArea:"+Box.getArea(),20,300);g.drawString("BoxPerimeter:"+Box.getPerimeter(),20,320);//输出圆的信息g.drawOval(30,70,100,100);g.drawString("OvalArea:"+Oval.getArea(),150,100);g.drawString("OvalPerimeter:"+Oval.getPerimeter(),150,120);//输出三角形的信息Graphics2Dg2=(Graphics2D)g;intxl[]={150,200,300,150};intyl[]={350,200,400,350};GeneralPathpolygon=newGeneralPath(0,xl.length+yl.length);polygon.moveTo(xl[0],yl[0]);for(intindex=l;index〈xl.length;index++){polygon.lineTo(xl[index],y1[index]);}polygon.closePath();g2.draw(polygon);g.drawString("TriangleArea:"+tri.getArea(),280,280);g.drawString("TrianglePerimeter:"+tri.getPerimeter(),290,300);}2.接口importjava.applet.Applet;importjava.awt.*;importjava.awt.geom.*;interfaceShape{abstractdoublegetArea();doublegetPerimeter();}classCirclerimplementsShape{publicdoublex,y;publicdoublewidth,height;publicdoubler;@OverridepublicdoublegetArea(){return(r*r*Math.PI);}@OverridepublicdoublegetPerimeter(){return(2*r*Math.PI);}publicCircler(doublex,doubley,doublewidth,doubleheight){this.x=x;this.y=y;this.width二width;this.height=height;r=(double)width/2.0;}}classSquarerimplementsShape{publicdoublex,y;publicdoublewidth,height;@OverridepublicdoublegetArea(){return(width*height);}@OverridepublicdoublegetPerimeter(){return(2*width+2*height);}publicSquarer(doublex,doubley,doublewidth,doubleheight){this.x=x;this.y=y;this.width二width;this.height=height;}}classTrianglerimplementsShape{publicdoublewidth,height;publicdoublec;©Overridepublicdoublex,y;publicdoublewidth,height;publicdoublec;@0verridepublicdoublegetArea(){return(0.5*width*height);}@0verridepublicdoublegetPerimeter(){return(width+height+c);}publicTriangler(doublex,doubley,doublebase,doubleheight){this.x=x;this.y=y;this.width二base;this.height=height;c=Math.sqrt(width*width+height*height);}}publicclassllllextendsApplet{SquarerBox=newSquarer(20,200,120,80);CirclerOval=newCircler(30,70,100,100);doubleb=Math.sqrt(Math.pow((150-200),2)+Math.pow((350-200),2));doublec=Math.sqrt(Math.pow((150-300),2)+Math.pow((350-400),2));Trianglertri二newTriangler(0,0,b,c);publicvoidpaint(Graphicsg){ //输出长方形的信息g.drawRect(20,200,120,80);g.drawString("BoxArea:"+Box.getArea(),20,300);g.drawString("BoxPerimeter:"+Box.getPerimeter(),20,320);//输出圆的信息g.drawOval(3O,7O,lOO,lOO);g.drawString("OvalArea:"+Oval.getArea(),150,100);g.drawString("OvalPerimeter:"+Oval.getPerimeter(),150,120);//输出三角形的信息Graphics2Dg2=(Graphics2D)g;intxl[]={150,200,300,150};intyl[]={350,200,400,350};GeneralPathpolygon=newGeneralPath(O,xl.length+yl.length);polygon.moveTo(xl[O]

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论