cylinder.java

来自「Cylinder Project, Java Application」· Java 代码 · 共 59 行

JAVA
59
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package cylinder;/** * * @author Rossiter */public class Cylinder extends Circle4 {   private double height;  // Cylinder's height   // no-argument constructor   public Cylinder()   {      // implicit call to Circle4 constructor occurs here   }   // constructor   public Cylinder( int xValue, int yValue, double radiusValue,      double heightValue )   {      super( xValue, yValue, radiusValue ); // call Circle4 constructor      setHeight( heightValue );   }   // set Cylinder's height   public void setHeight( double heightValue )   {      height = ( heightValue < 0.0 ? 0.0 : heightValue );   }   // get Cylinder's height   public double getHeight()   {      return height;   }   // override Circle4 method getArea to calculate Cylinder area   public double getArea()   {      return 2 * super.getArea() + getCircumference() * getHeight();   }   // calculate Cylinder volume   public double getVolume()   {      return super.getArea() * getHeight();   }   // return String representation of Cylinder object   public String toString()   {      return super.toString() + "; Height = " + getHeight();   }} // end class Cylinder

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?