定义一个圆类(Circle)

课堂练习6

– 定义一个圆类(Circle),其所在的包为bzu.info.software;定义一个圆柱类Cylinder,其所在的包为bzu.info.com;定义一个主类A,其所在的包也为bzu.info.com,在A中生成一个Cylinder对象,并输出其体积。编译并运行该类。

– 试着改变求体积方法的访问权限,查看并分析编译和运行结果

– 把Cylinder类和A类置于不同的包中,通过对求体积方法设置不同的访问权限,查看并分析编译和运行结果



package bzu.info.com;  
import bzu.info.software.Circle;  
public class A {  
  
    public static void main(String[] args) {  
        Cylinder cylinder=new  Cylinder();  
        Circle circle=new Circle(10);  
        circle.setR(10);  
        cylinder.setCircle(circle);    
        cylinder.setHeight(20);   
        double s=cylinder.getVolme();  
        System.out.println("底面半径:"+circle.getR()+",圆柱的高:"    
                +cylinder.getHeight()+",圆柱的体积:"+s);   
    }  
  
} 

package bzu.info.com;  
import bzu.info.software.Circle;  
public class Cylinder {  
Circle circle;  
double height;  
public Circle getCircle() {  
    return circle;  
}  
public void setCircle(Circle circle) {    
    this.circle = circle;  
}  
double getVolme() {  
    return circle.getArea()*height;  
}  
public double getHeight() {    
    return height;    
}  
public void setHeight(double height) {    
    this.height = height;    
}    
}

package bzu.info.software;  
  
public class Circle {  
double r,area;  
public Circle(double r){  
    this.r=r;  
}  
public void setR(double r) {  
    this.r=r;  
}  
public double getR() {  
    return r;  
}  
public double getArea() {  
    area=3.14*r*r;  
    return area;  
}  
} 


实验内容: 一、定义一个名为Circle圆类,位于shape包中。要求如下: (1) 该类需要描述圆在二维坐标系中的位置,圆心的横、纵坐标值均取整数;描述圆的半径,取双精度类型。 (2) 无参构造方法将圆心坐标设为坐标圆点,半径设为1.0;有参构造方法需要根据参数值设置圆心坐标和半径值。 (3) 提供一个计算圆面积的方法double getArea()。 (4) 提供一个判断当前圆对象与参数圆对象是否相交的方法(相交方式见下图): boolean isIntersected(Circle another) (5) 提供一个判断当前圆对象是否包含参数圆对象的方法(包含方式见下图): boolean contains(Circle another) (6) 提供一个判断当前圆对象与参数圆对象的大小关系的方法(判断依据是半径,半径之差的绝对值小于0.0001认为相等;返回负数表示当前圆对象小,0表示相等,正数表示当前圆对象) int compareTo(Circle another) (7) 提供返回当前圆的字符串的方法,格式为:[Circle(x,y)-raduis] String toString() 二、定义一个包含main方法的类TestCircle,位于shape包中。要求如下: (1) main方法中调用以下方法。 (2) 编写静态方法createArray,生成位置和大小均随机的10个圆对象,置于数组中。 (3) 编写静态方法sort对这10个圆对象进行升序排序,并输出。 (4) 编写静态方法computeArea计算这10个圆中互不相交和包含的圆的面积之和。 提交要求:打包为可以执行的JAR文档,其中要包含源程序文件。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值