📄 cylindricalparcel.java
字号:
// Figure 8.5public class CylindricalParcel extends Parcel { private double parcelRadius, parcelLength; /** post: parcelLength == len AND parcelRadius == r * and volume == len*r*r*PI * and weight == volume*600 * and isAirFreight==false */ public CylindricalParcel( double len, double r) { super( 0, 0, false ); parcelLength = len; parcelRadius = r; volume = parcelLength * Math.PI * Math.pow(parcelRadius,2); weight = volume * 600; } public double length() { return parcelLength; } public double radius() { return parcelRadius; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -