Box类

//This program uses inheritance to extend Box.
class Box
{
    double width;
    double height;
    double depth;
    //construct clone of an object
    Box(Box ob)
    {
        width = ob.width;
        height = ob.height;
        depth = ob.depth;
    }
    //constructor used when all dimensions specified
    Box(double w, double h, double d)
    {
        width = w;
        height = h;
        depth = d;
    }
    //constructor used when no dimensions spcified
    Box()
    {
        width = -1;
        height = -1;
        depth = -1;
    }
    //constructor used when cube is created
    Box(double len)
    {
        width = height = depth = len;
    }
    double volume()
    {
        return width*height*depth;
    }
}

//Here, Box is extended to include weight.
class BoxWeight extends Box
{
    doble weight;
    BoxWeight(double w, double h,  double d, double m)
    {
        width = w;
        height = h;
        depth = d;
        weight = m;
    }
}

class DemoBoxWeight
{
    public static void main(String args[])
    {
        BoxWeight mybox1 = new BoxWeight(10, 20, 15, 34.3);
        BoxWeight mybox2 = new BoxWeight(2, 3, 4, 0.076);
        double vol;
        vol = mybox1.volume();
        System.out.println("Volume of mybox1 is" + vol);
        System.out.println("Weight of mybox1 is" + mybox1.weight);
        System.out.println();
        vol = mybox2.volume();
        System.out.println("Volume of mybox2 is" + vol);
        System.out.println("Weight of mybox2 is" + mybox2.weight);
    }
}
Box类示例,帮助理解java继承,动态构造函数。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值