博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DemoBoxWeight
阅读量:5237 次
发布时间:2019-06-14

本文共 805 字,大约阅读时间需要 2 分钟。

class Box{

double width;
double depth;
double height;
Box(){
width=0;height=0;depth=0;
}
Box(double w,double h,double d){
width=w;depth=d;height = h;
}
double volume(){
return width*height*depth;
}
}
class BoxWeight extends Box{
double weight;
BoxWeight(double w,double h,double d,double m){
width=w;depth=d;height = h;weight=m;
}
}
public class DemoBoxWeight {

public static void main(String[] args) {

// TODO 自动生成的方法存根
BoxWeight mybox1=new BoxWeight(10,20,30,58.5);
BoxWeight mybox2=new BoxWeight(3,5,8,30.5);
System.out.println("Volume of mybox1 is "+mybox1.volume() );
System.out.println("Weight of mybox1 is "+mybox1.weight );
System.out.println("Volume of mybox2 is "+mybox2.volume() );
System.out.println("Volume of mybox2 is "+mybox2.weight);
}

}

转载于:https://www.cnblogs.com/wlp1115/p/6704914.html

你可能感兴趣的文章
最高的奖励 - 优先队列&贪心 / 并查集
查看>>
STL顺序容器总结
查看>>
adb常用命令
查看>>
网络分层
查看>>
用Spring构建一个RESTful Web Service
查看>>
Mathematica Memo 01
查看>>
第三章 2D Rendering Input Layout
查看>>
【python】读取和输出到txt
查看>>
SCIM不能输入中文
查看>>
[Codeforces 961G]Partitions
查看>>
[CODEVS 1288]埃及分数
查看>>
经典排序算法——快速排序
查看>>
CS:APP 05 笔记
查看>>
C#委托的介绍(delegate、Action、Func、predicate)
查看>>
wpf 控件添加背景图片
查看>>
挑战程序设计竞赛 2.1 最基础的“穷竭搜索”
查看>>
BZOJ 4027:[HEOI2015]兔子与樱花(贪心+树形DP)
查看>>
第十一周工作总结
查看>>
java io经典代码
查看>>
Linux 常用命令
查看>>