- 1、本文档共11页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
java- 实验九
《》实验
掌握包的创建和使用。
实验程序
阅读并调试程序,给出程序的运行结果。对InterfaceTester类中的for循环进行解释。详细说明参考程序。程序共包括四个程序文件,分别是Measurer.java,Circle.java,Rectangle.java和InterfaceTester.java。
运行结果:
程序分析:
在for循环中,变量i的控制条件为Measurer类型的数组的长度且为2,循环体执行打印调用measurers[i].measure()方法的值;在Measurer 类中,程序调用了measure()方法,此方法在Rectangle类、Circle类中都存在,在数组初始化时,将Circle 类的对象circle赋给了measurers[0],所以measurers[i].measure()方法会调用Circle类中measure()方法;当i++后,Rectangle 类的对象rectangle赋给了measurers[1],所以measurers[i].measure()方法会调用Rectangle类中measure()方法。
2、(1)创建edu.lzjtu.shape包,该包中包含Shape接口、点类(Point类)、线段类、四边形类、梯形类、平行四边形类、矩形类和正方形类。
(2)编写正方形类和梯形类的测试程序类(要求测试程序类与正方形类不在同一个包中)。
(3)计算正方形、梯形的周长和面积。
(4)给出环境变量CLASSPATH的值以及正方形类、测试程序类在磁盘上的物理路径(例如:d:\java\Tester.java)。
提示:实验课内完成包的创建、正方形类和梯形类的定义、测试程序类的定义及测试代码。作业上需要完成上述所有类和接口的定义。
程序:interface shape{
public abstract double getArea();
public abstract double getPerimeter();
}
class Point implements shape/*点类*/{
public static void main(String[] args){
System.out.println(我叫点类,我执行完了,再见!);
}
private int x;
private int y;
public Point(int x,int y){
this.x = x;
this.y = y;
}
public int getpointx(){
return x;
}
public int getpointy(){
return y;
}
public double getArea(){return 0;}
public double getPerimeter(){return 0;}
}
class Line implements shape/*线段类*/{
public static void main(String[] args) {
System.out.println(我是线段类,很高兴为你服务!);
}
private int x1;
private int y1;
private int x2;
private int y2;
Line(int x1,int y1,int x2,int y2){
this.x1 = x1;
this.y1 = y1;
this.x2 = x2;
this.y2 = y2;
}
public double getlength(){
return Math.sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1));
}
public double getArea(){return 0;}
public double getPerimeter(){return 0;}
}
class Trapezoid implements shape /*梯形类*/
{
public static void main(String[] args){
System.out.println(哈哈...我叫梯形类,和我玩吧!);
}
private double top;
private double bottom;
private double right;
private double left;
public Trapezoid(double top,double bottom,double right,do
文档评论(0)