实验指导书:实验7--继承与多态(一)(共14页).docx

上传人:飞****2 文档编号:14289191 上传时间:2022-05-03 格式:DOCX 页数:14 大小:173.83KB
返回 下载 相关 举报
实验指导书:实验7--继承与多态(一)(共14页).docx_第1页
第1页 / 共14页
实验指导书:实验7--继承与多态(一)(共14页).docx_第2页
第2页 / 共14页
点击查看更多>>
资源描述

《实验指导书:实验7--继承与多态(一)(共14页).docx》由会员分享,可在线阅读,更多相关《实验指导书:实验7--继承与多态(一)(共14页).docx(14页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、精选优质文档-倾情为你奉上西 安 邮 电 大 学(计算机学院)面向对象程序设计JAVA课内实验报告实验名称:继承与多态(一)专业名称:软件工程班 级: 软件1501学生姓名:冀潘婷学号(8位):指导教师:张德慧实验时间:2016.10.21一. 实验目的及实验环境 1理解子类、父类的概念,掌握子类继承父类的方法。 2理解成员变量的隐藏和方法重写。 3会使用super关键字操作被隐藏的成员变量和方法。 4了解final类和final方法的作用。 5理解protected修饰符的作用和用法。二. 实验内容 1 基本内容(实验前请及时熟悉如下相关内容)1)类的继承:定义子类2)使用super关键字调

2、用父类方法3)方法覆盖overriding:覆盖Object类的toString( )方法4)练习使用ArrayList类的方法5)练习覆盖Object类的equals( )方法 2 综合实验:2.1 (Y. Daniel Liang英文版八版P403:11.1) (The Triangle class) Design a class named Triangle that extends GeometricObject. The class contains: Three double data fields named side1, side2, and side3 with defaul

3、t values 1.0 to denote three sides of the triangle. A no-arg constructor that creates a default triangle. A constructor that creates a triangle with the specified side1, side2, and side3. The accessor methods for all three data fields. A method named getArea() that returns the area of this triangle.

4、 A method named getPerimeter() that returns the perimeter of this triangle. A method named toString() that returns a string description for the triangle.For the formula to compute the area of a triangle, see Exercise 2.21. The toString() method is implemented as follows:return Triangle: side1 = + si

5、de1 + side2 = + side2 + side3 = + side3;Draw the UML diagram for the classes Triangle and GeometricObject.Implement the class. Write a test program that creates a Triangle object with sides 1, 1.5, 1, color yellow and filled true, and displays the area, perimeter, color, and whether filled or not. (

6、不要求画出UML图)2.2 (Y. Daniel Liang英文版八版P403:11.2) (The Person, Student, Employee, Faculty, and Staff classes) Design a class named Person and its two subclasses named Student and Employee.Make Faculty and Staff subclasses of Employee. A person has a name, address, phone number, and email address. A stud

7、ent has a class status (freshman, sophomore, junior, or senior). Define the status as a constant. An employee has an office, salary, and date hired. Define a class named MyDate that contains the fields year, month, and day. A faculty member has office hours and a rank. A staff member has a title. Ov

8、erride the toString method in each class to display the class name and the persons name.Draw the UML diagram for the classes. Implement the classes. Write a test programthat creates a Person, Student, Employee, Faculty, and Staff, and invokes their toString() methods. (不要求画出UML图)2.3 (Y. Daniel Liang

9、英文版八版P404:11.5) (The Course class) Rewrite the Course class in Listing 10.6. Use an ArrayList to replace an array to store students. You should not change the original contract of the Course class (i.e., the definition of the constructors and methods should not be changed).三 测试数据及运行结果四 源代码五 (1).pack

10、age eightWeek;public class dfg public static void main(String args) / TODO Auto-generated method stub Triangle triangle = new Triangle(1,1.5,1,yellow,true); System.out.println(The triangle of Area:+triangle.getArea(); System.out.println(The triangle of perimeter:+triangle.getPerimeter(); System.out.

11、println(color:+triangle.getColor(); System.out.println(color is filled or not?+triangle.isFilled(); class Triangle extends GeometricObject double side1=1.0; double side2=1.0; double side3=1.0; public Triangle(double side1,double side2,double side3) this.side1=side1; this.side2=side2; this.side3=side

12、3; public double Getside1() return side1; public double Getside2() return side2; public double Getside3() return side3; public double getPerimeter() return this.side1 + this.side2 + this.side3; public double getArea() double p = this.getPerimeter() / 2; double ss = p * (p - this.side1) * (p - this.s

13、ide2) * (p - this.side3); double s = Math.sqrt(ss); return s; public Triangle(double side1, double side2,double side3,String color, boolean filled) this.side1=side1; this.side2=side2; this.side3=side3; this.color=color; super.setFilled(filled); public String getString() return Triangle: + this.side1

14、 + , + this.side2 + , + this.side3; class GeometricObjectpublic String color=white;public boolean filled;public java.util.Date dateCreated;GeometricObject() public GeometricObject(String color,boolean filled)dateCreated = new java.util.Date();this.color=color;this.filled=filled;public String getColo

15、r()return color;public void setColor(String color)this.color=color;public boolean isFilled()return filled;public void setFilled(boolean filled)this.filled=filled;public String toString()return color+color+and filled:+filled; (2).package eightWeek;public class dfh public static void main(String args)

16、 / TODO Auto-generated method stub person man = new person(); Student student = new Student(); Employee ploy = new Employee(); Faculty faculty = new Faculty(); Staff staff = new Staff(); man.setname(li); student.setname(hu); ploy.setname(ji); faculty.setname(shi); staff.setname(wan); System.out.prin

17、tln(man.toString(); System.out.println(student.toString(); System.out.println(ploy.toString(); System.out.println(faculty.toString(); System.out.println(staff.toString();class personpublic String name;public String address;public int num;public String emialaddress;person()public person(String name,

18、String address, int num, String emialaddress)this.name=name;this.address=address;this.num=num;this.emialaddress=emialaddress;public void setname(String name)this.name=name; public String getname()return this.name;public String toString()return person:+this.name;class Student extends personpublic voi

19、d setGrade() final String s1=freshman; final String s2=sophomore; final String s3=junior; final String s4=ssenior;Student()public Student(String name, String address, int num, String emialaddress,String grade)this.name=name;this.address=address;this.num=num;this.emialaddress=emialaddress;public Stri

20、ng toString()return student:+super.name;class Employee extends personint officenum;int salary;myDate date;Employee()public String toString()return Employee:+super.name;class Faculty extends EmployeeString officehours;String rank;public String toString()return faculty:+super.name;class Staff extends

21、EmployeeString title;public String toString()return Staff:+super.name;class myDate int year;int month;int day;myDate(int year, int month, int day)this.year=year;this.month=month;this.day=day;(3).package eightWeek;import java.util.ArrayList;public class drt public static void main(String args) / TODO

22、 Auto-generated method stub Course mycourse = new Course(chinese); mycourse.addStudent(li); mycourse.addStudent(ji); System.out.println(mycourse.getStudent();class CourseString courseName;java.util.ArrayList list = new java.util.ArrayList();int numberOfStudent;Course(String coursename)this.courseName=coursename; public void addStudent(String student)list.add(student);public ArrayList getStudent()return list;public int getNumberOfStudent()return numberOfStudent;public String getCourseName()return courseName;专心-专注-专业

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 教案示例

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁