| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 571 人关注过本帖
标题:实现Volume接口
取消只看楼主 加入收藏
大剑
Rank: 2
等 级:论坛游民
帖 子:30
专家分:25
注 册:2011-11-16
结帖率:100%
收藏
 问题点数:0 回复次数:1 
实现Volume接口
设计圆形类Circle,给出计算周长和面积的方法。    声明圆柱体类Cylinder ,继承圆形类并实现Volume接口,计算体积。
程序代码:
public class Circle  {
protected double radius;

public Circle(double radius)
{
    this.radius=radius;
}
public double perimeter()
{
    return this.radius*2*3.14;
}
public double area()
{
    return this.radius*this.radius*3.14;
    }
public String toString()
{
    return "一个圆,半径"+radius+"周长为"+perimeter()+"面积为"+area();
}
public static void main(String args[])
{
    System.out.println(new Circle(12).toString());
}
}







public class Cylinder extends Circle implements Volume
{
protected double height;
public Cylinder(double radius,double height)
{
    super(radius);
    this.height=height;
   
}
public Cylinder()
{
    this(0,0);
}
public double volume()
{
    return super.area()*this.height;
}
public String toString()
{
    return"体积为"+this.volume();
}
public static void main(String args[])
{
    System.out.println(new Cylinder(12,12).toString());
}
}




[ 本帖最后由 大剑 于 2011-12-12 23:56 编辑 ]
搜索更多相关主题的帖子: 接口 圆柱体 设计 继承 
2011-12-12 23:53
大剑
Rank: 2
等 级:论坛游民
帖 子:30
专家分:25
注 册:2011-11-16
收藏
得分:0 
因为逃课 接口就接不来了!后悔啊!
2011-12-13 11:43
快速回复:实现Volume接口
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022323 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved