5-1面向对象编程(中)----面向对象特征之二: 继承性练习2--圆与圆柱

在这里插入图片描述
Circle类:

public class Circle {
  
 private double radius;//半径
  
 public Circle(){
  radius = 1.0;
 }
// 
 public Circle(double radius){
  this.radius = radius;
 }
 
 public double getRadius() {
  return radius;
 }
 
 public void setRadius(double radius) {
  this.radius = radius;
 }
  
 //返回圆的面积
 public double findArea(){
  return Math.PI * radius * radius;
 }
}

Cylinder类:

public class Cylinder extends Circle{
  
 private double length;//高
  
 public Cylinder(){
  length = 1.0;
 }
 
 public double getLength() {
  return length;
 }
 
 public void setLength(double length) {
  this.length = length;
 }
  
 //返回圆柱的体积
 public double findVolume(){
//  return Math.PI * getRadius() * getRadius() * getLength();
  return super.findArea() * getLength();
 }
  
 @Override
 public double findArea() {//返回圆柱的表面积
  return Math.PI * getRadius() * getRadius() * 2 + 
    2 * Math.PI * getRadius() * getLength();
 }
}

CylinderTest:

public class CylinderTest {
 public static void main(String[] args) {
  Cylinder cy = new Cylinder();
 
  cy.setRadius(2.1);
  cy.setLength(3.4);
  double volume = cy.findVolume();
  System.out.println("圆柱的体积为:" + volume);
 
  // 没有重写findArea()时:
//  double area = cy.findArea();
//  System.out.println("底面圆的面积:" + area);
  // 重写findArea()以后:
  double area = cy.findArea();
  System.out.println("圆柱的表面积:" + area);
 
  System.out.println("******************");
  Cylinder cy1 = new Cylinder();
  double volume1 = cy1.findVolume();
  System.out.println("圆柱的体积为:" + volume1);
 }
}

输出:

圆柱的体积为:47.10504024792536
圆柱的表面积:72.57079029792422
******************
圆柱的体积为:3.141592653589793
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

YY鸟

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值