码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-04-15 14:56:27      阅读:154      评论:0      收藏:0      [点我收藏+]

标签: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;
}
技术分享

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

标签:c++   派生   继承   

原文地址:http://blog.csdn.net/cherry_ermao/article/details/45058255

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!