gpt4 book ai didi

c++ - 使用 C++ 基类构造函数?

转载 作者:IT老高 更新时间:2023-10-28 14:01:09 24 4
gpt4 key购买 nike

在使用模板时,我遇到了需要使基类构造函数可以从继承的类中访问以创建对象以减少复制/粘贴操作。我正在考虑通过 using 关键字以与函数大小写相同的方式执行此操作,但这不起作用。

class A
{
public:
A(int val) {}
};

class B : public A
{
};

class C : public A
{
public:
C(const string &val) {}
};

class D : public A
{
public:
D(const string &val) {}
using A::A; // g++ error: A::A names constructor
};

void main()
{
B b(10); // Ok. (A::A constructor is not overlapped)
C c(10); // error: no matching function to call to 'C::C(int)'
}

所以我的问题是:有没有办法在继承类中的新构造函数被声明后导入基类构造函数?

或者只有一种选择来声明新的构造函数并从初始化列表中调用基础构造函数?

最佳答案

是的,从 C++11 开始:

struct B2 {
B2(int = 13, int = 42);
};
struct D2 : B2 {
using B2::B2;
// The set of inherited constructors is
// 1. B2(const B2&)
// 2. B2(B2&&)
// 3. B2(int = 13, int = 42)
// 4. B2(int = 13)
// 5. B2()

// D2 has the following constructors:
// 1. D2()
// 2. D2(const D2&)
// 3. D2(D2&&)
// 4. D2(int, int) <- inherited
// 5. D2(int) <- inherited
};

更多信息见http://en.cppreference.com/w/cpp/language/using_declaration

关于c++ - 使用 C++ 基类构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8093882/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com