[c++]派生类与容器类

#include<iostream>
using namespace std;
class Base
{
    int x;
public:
    Base(int a)
    {
        x = a;//记得给私有成员赋初值,没有的话会是随机值
        cout<<"constructing Base "<<x<<endl;
    }
    ~Base()
    {
        cout<<"destructing Base "<<x<<endl;
    }
};
class Derived:public Base//基类
{
    int y;
    Base B1,B2;//容器类
public:
    Derived(int a,int b,int c,int d):Base(a),y(b),B1(c),B2(d)//并不按参数列表的顺序定义,而是按照先基类,再容器类,最后子类的顺序定义
    {cout<<"constructing Derived "<<y<<endl;}
    ~Derived()
    {cout<<"destructing Dervied "<<y<<endl;}
};
int main()
{
    Derived D(1,2,3,4);
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值