《Java程序设计》作业二.doc

上传人:豆**** 文档编号:34306567 上传时间:2022-08-16 格式:DOC 页数:8 大小:69.50KB
返回 下载 相关 举报
《Java程序设计》作业二.doc_第1页
第1页 / 共8页
《Java程序设计》作业二.doc_第2页
第2页 / 共8页
点击查看更多>>
资源描述

《《Java程序设计》作业二.doc》由会员分享,可在线阅读,更多相关《《Java程序设计》作业二.doc(8页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、如有侵权,请联系网站删除,仅供学习与交流一、二、三、四、五、六、七、八、九、 Java程序设计作业二【精品文档】第 8 页十、 9.2(1) 题目设计一个Stock的类,这个类包括:一个名为symbol的字符串数据域表示股票代码一个名为name的字符串数据域表示股票名字 一个名为previousClosingPrice的double型数据域,它存储的是前一日的股票值一个名为currentPrice的double型数据域,它存储的是当时的股票值。创建一支有特定代码和名字的股票的构造方法。一个名为getChangePercent()的方法返回从previousClosingPrice变化到curr

2、entPrice的百分比。实现这个类,编写一个测试程序,创建一个Stock对象,它的股票代码是ORCL股票名字为Oracle Corporation,前一日收盘价是34.5。设置新的当前值为34.35,然后显示市值变化的百分比。(2) UML图(3) 代码package edu.neu.li.test;public class Stock private String symbol=;private String name;private double previousClosingPrice;private double currentPrice;public Stock() symbol=

3、;name=;previousClosingPrice=34.5;currentPrice=34.35;public Stock(String newsymble, String newname) symbol=newsymble;name=newname;public String getsymbol()return symbol;public String getname()return name;public double getChangPercent() return currentPrice/previousClosingPrice;package edu.neu.li.test.

4、run;import edu.neu.li.test.Stock;public class test1 public static void main(String args) Stock s1=new Stock(); Stock s=new Stock(ORCL,Oracle Corporation);System.out.println(The symbol is:+s.getsymbol();System.out.println(The name is:+s.getname();System.out.println(The ChangPercent is:+s1.getChangPer

5、cent();(4) 运行结果The symbol is: ORCLThe name is: Oracle CorporationThe ChangPercent is:0.9956521739十一、 9.8(1) 题目设计一个名为Fan的类表示风扇。这个类包括: 1 三个常量SLOW,MEDIUM和FAST,其值分别为1,2,3,表示风扇的速度;2 int类型的数据域speed表示风扇的速度;默认值为SLOW3 boolean型的数据域on表示风扇是否打开;默认值为false4 double型的数据域radius表示风扇的半径;默认值为55 string型的数据域color表示风扇的颜色;默

6、认值为blue6 无参构造方法创建默认风扇;7 全部四个数据域的访问器和修改器;9 toString()方法返回描述风扇的字符串。如果风扇打开,该方法用一个组合的字符串返回风扇的速度,颜色和半径;否则,用一个组合的字符串和“fan is off”一起返回风扇的颜色和半径。画出该类的UML图并实现它。编写一个测试程序,创建两个Fan对象,将第一个对象设置为最大速度,半径为10,颜色为yellow,打开状态;第二个对象为中等速度,半径为5,颜色blue,关闭状态。通过调用toString方法显示该对象(2) UML图(3) 代码package edu.neu.li.test;public clas

7、s Fan private final int SLOW=1;private final int MEDIUM=2;private final int FAST=3;private int speed=SLOW;private boolean on=false;private double radius=5;private String color=blue;public Fan() public Fan(int speed,boolean on,double radius,String color) this.speed=speed;this.on=on;this.radius=radius

8、;this.color=color;public int getspeed() return speed;public void setspeed(int speed) this.speed=speed;public boolean geton() return on;public void seton(boolean on) this.on=on;public double getradius() return radius;public void setradius(double radius) this.radius=radius;public String getcolor() ret

9、urn color;public void setcolor(String color) this.color=color;public String toString() if(on=true)return the fan is: +on+ the speed is: +speed+ the color: +color+ the radius: +radius;elsereturn fan is off+the color:+color+the radius:+radius;package edu.neu.li.run;import edu.neu.li.test.Fan;public cl

10、ass Fan2 public static void main(String args)Fan F=new Fan();Fan F2=new Fan(3,true,10,yellow);System.out.println(The Fan:+F2.toString();(4) 运行结果:the fan is: true the speed is: 3 the color: yellow the radius: 10.0十二、 10.4(1) 题目设计名为MyPoint的类表示平面中的一个坐标(x,y)两个私有属性:x、y表示横、纵坐标无参数构造方法:用于创建原点(0,0)根据指定坐标(x,y

11、)创建一个点的(带参数)构造方法属性的getter和setter方法【注意使用this关键字】distance方法:返回任意两点间的距离distance方法:返回本坐标和任意一点间的距离(2) UML图(3) 代码package edu.neu.li.test;public class MyPoint private double x;private double y;public MyPoint() x=0; y=0;public MyPoint(double x, double y) super(); this.x = x; this.y = y;public double getX()

12、return x;public void setX(double x) this.x = x;public double getY() return y;public void setY(double y) this.y = y;public double distance(MyPoint p1,MyPoint p2) double d=0; d=Math.hypot(p1.getX()-p2.getX(), (p1.getY()-p2.getY(); return d;public double distance (MyPoint p1) double d=0; d=Math.hypot(x

13、-p1.getX(),(y-p1.getY(); return d;package edu.neu.li.run;import edu.neu.li.test.MyPoint;public class test public static void main(String args) MyPoint m=new MyPoint(); MyPoint m1=new MyPoint(10,30.5);System.out.println(The distance is:+m.distance(m,m1);(4) 运行结果The symbol is:32.09750769140807十三、 11.2

14、(1) 题目(Person、Student、Employee、Faculty和Staff类)设计一个名为Person的类和它的两个名为Stude和Employee子类。Employee类又有子类:教员类Faculty和职员类Staff。每个人都有姓名、地址、电话号码和电子邮箱地址。学生有班级状态(大一、大二、大三或大四)。将这些状态定义为常量。一个雇员有办公室、工资和受聘日期。定义一个名为MyDate的类,包含数据域:year(年)、month(月)和day(日)。教员有办公时间和级别。职员有职务称号。覆盖每个类中的toString方法,显示相应的类名和人名。 画出这些类的UML图。实现这些类

15、。编写一个测试程序,创建Person、Student、Employee、Faculty和Staff,并且调用它们的toSting()方法。(2) UML图(3) 代码classPersonStringname;Stringaddress;Stringtelphone;publicPerson(Stringn,Stringa,Stringt)name=n;address=a;telphone=t;publicStringtoString()returnname+Person;classStudentextendsPersonfinalStringclass1=一年级;finalStringcla

16、ss2=二年级;finalStringclass3=三年级;finalStringclass4=四年级;publicStudent(Stringn,Stringa,Stringt)super(n,a,t);publicStringtoString()returnname+Student;classEmployeeextendsPersonStringoffice;doublesalary;publicEmployee(Stringn,Stringa,Stringt,Stringo,doubles)super(n,a,t);office=o;salary=s;publicStringtoStri

17、ng()returnname+Employee;classFacultyextendsEmployeeintLevel;publicFaculty(Stringn,Stringa,Stringt,Stringo,doublew,intlevel)super(n,a,t,o,w);Level=level;publicStringtoString()returnname+Faculty;classStaffextendsEmployeeStringposition;publicStaff(Stringn,Stringa,Stringt,Stringo,doublew,Stringp)super(n

18、,a,t,o,w);position=p;publicStringtoString()returnname+Staff;publicclassffpublicstaticvoidmain(Stringargs)Personp=newPerson(柯雅心,陕西省,18749601221);display(p);Students=newStudent(刘子航,陕西省,15839652309);display(s);Employeee=newEmployee(王珺,陕西省,0395112222,人事局,222.00);display(e);Facultyf=newFaculty(王影,陕西省,13233344666,办公室,345.00,1);display(f);Staffsta=newStaff(小明,陕西省,13849472334,人事科,345.00,副局长);display(sta);publicstaticvoiddisplay(Personperson)System.out.println(person);(4) 运行结果柯雅心 Person刘子航 Student王珺 Employee王影 Faculty小明 Staff

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

当前位置:首页 > 教育专区 > 高考资料

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

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