标题:谢谢大神对小友的一路指点!不过小友最近有遇到问题了!
只看楼主
蛤蟆001
Rank: 1
等 级:新手上路
帖 子:34
专家分:0
注 册:2016-9-2
结帖率:70%
 问题点数:0 回复次数:0 
谢谢大神对小友的一路指点!不过小友最近有遇到问题了!
#include <iostream>
class A
{
public:
    A()  { cout << "A Constructor1" <<endl;
    A(int i) { x1=i;cout <<"A Constructor2" <<endl;
    void dispa() { cout << "x1=" << x1 <<endl;};
private:
    int x1;
    };
    class B :public A
    {
    public:
        B() {cout << "b Constructor1" <<endl;}
        B(int i): A(i+10) { x2=i;cout << "B Constructor2" <<endl;}
        void dispb()
        {
            dispb();
            cout << "x2=" <<x2<<endl;
        }
    private:
        int x2;
        };
        void main()
        {
            B b(2);
            b.dispb();
        }

最近看到派生构造函数了,但是这个程序怎么看也看不懂!还请大神给小友分析一下程序是咋运行的???
搜索更多相关主题的帖子: include private public 
2016-09-17 00:15



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-468860-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.216252 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved