类与对象实验.doc_第1页
类与对象实验.doc_第2页
类与对象实验.doc_第3页
类与对象实验.doc_第4页
类与对象实验.doc_第5页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

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

文档简介

Java程序设计 实验报告实验名称 类与对象 实验室 实验楼521 实验日期 2012-03-22 类与对象一、 实验目的1、 掌握类的定义和使用,编写构造方法及成员方法。2、 能够创建类的实例,掌握对象的声明和不同访问属性的成员访问方式。3、 会定义接口、实现接口。二、 实验内容1. 设计并实现一个课程类,代表学校中的一门课程,将这门课程的相关信息组成该类的属性(如课程代码、课程名称、课程类别、学时、学分等),并在类中定义各个属性相关的访问方法(如获取和设置课程代码、课程名称,课程类别,获取和修改学时、学分,打印输出课程基本信息等),最后使用主函数测试此类(包括创建对象,调用相应方法等)。2. 在java中,定义一个接口,声明计算图形面积和周长的抽象方法,再用类去实现这个接口,再编写一个测试类去使用这个接口。三、 实验环境JDK四、 实验步骤实验一:1、定义一个Course类: 2、对相关信息输出操作:3、对相关函数进行调用:实验二:1、定义一个Client类:2、编写计算周长和面积的函数:3、定义一个MyRectangle类:在类中定义相关的函数五、 实验结果 实验一: 实验二:六、 小结通过本次实验,基本了解了类与对象的概念和基本定义方法,在测试时仍然存在一些问题,通过对错误书写的检查和修改,程序可以正常运行!在试验过程中基本掌握了类的定义和使用,编写构造方法及成员方法。能够创建类的实例,掌握对象的声明和不同访问属性的成员访问方式。会定义接口、实现接口。七、 源程序清单1、class Course int Cnumber; String Cname; String Ctype; int Ctime; int Cscrose; Course(int Cnu,String Cna,String Cty,int Ct,int Cs) Cnumber=Cnu; Cname=Cna; Ctype=Cty; Ctime=Ct; Cscrose=Cs; void display1() System.out.println(课程号:+Cnumber); void change1(int Cnu) Cnumber=Cnu; void display2() System.out.println(课程名称:+Cname); void change2(String Cna) Cname=Cna; void display3() System.out.println(课程类型:+Ctype); void change3(String Cty) Ctype=Cty; void display4() System.out.println(课时:+Ctime); void change4(int Ct) Ctime=Ct; void display5() System.out.println(课程学分:+Cscrose); void change5(int Cs) Cscrose=Cs; public class Lesson public static void main(String args) Course human=new Course(1,English,必修,54,4); human.display1(); human.display2(); human.display3(); human.display4(); human.display5(); human.Cnumber=2; human.Cname=new String(Math); human.Ctype=new String(必修); human.Ctime=36; human.Cscrose=5; System.out.println(修改后的课程信息:); human.display1(); human.display2(); human.display3(); human.display4(); human.display5(); 2、public class Client public static void main(String args) ICalculate cal=new Calculate(); MyRectangle rect=new MyRectangle(10,5); System.out.println(rect+周长为:+cal.calcuGirth(rect); System.out.println(rect+面积为:+cal.calcuArea(rect); rect=new MyRectangle(30,50); System.out.println(rect+周长为:+cal.calcuGirth(rect); System.out.println(rect+面积为:+cal.calcuArea(rect); interface ICalculate int calcuArea(MyRectangle rect); int calcuGirth(MyRectangle rect);class Calculate implements ICalculate /计算面积的方法 public int calcuArea(MyRectangle rect) int result=rect.getWidth()*rect.getHeight(); return result; /计算周长的方法 public int calcuGirth(MyRectangle rect) int result=(rect.getWidth()+rect.getHeight()*2; return result; class MyRectangle private int width; private int height; public MyRectangle(int width ,int height) this.width=width; this.height=height; public int getWidth() return width; public void setWidth(int width) this.width=width; public void setHeight(int height) this.height=he

温馨提示

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

评论

0/150

提交评论