有构造函数的类的继承问题写法

#include <iostream>
#include <thread>
#include <math.h>
#include <vector>
#include <queue>

class A{
public:
    A(int i){ a_ = i;}
    int a_;
};

class B : public A{
public:
    B(int j) : A(3){b_ = j;}
    int b_;
};

class C : public B{
public:
    C(int k) : B(4){c_ = k;}
    int c_;
};

int main()
{
    //定义A类 构造函数赋值a5
    A test_a(5);
    std::cout << "test_a.a_ = " << test_a.a_ << std::endl;
    //定义B类 构造函数赋值b1 B继承A赋值a3
    B test_b(1);
    std::cout << "test_b.a_ = " << test_b.a_ << std::endl;
    std::cout << "test_b.b_ = " << test_b.b_ << std::endl;
    //定义C类 构造函数赋值c2 C继承B赋值b4 B继承A赋值a3
    C test_c(2);
    std::cout << "test_c.a_ = " << test_c.a_ << std::endl;
    std::cout << "test_c.b_ = " << test_c.b_ << std::endl;
    std::cout << "test_c.c_ = " << test_c.c_ << std::endl;
}

最终结果为 

test_a.a_ = 5
test_b.a_ = 3
test_b.b_ = 1
test_c.a_ = 3
test_c.b_ = 4
test_c.c_ = 2

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值