gpt4 book ai didi

c++ - 为什么使用声明生成的构造函数具有与基类相同的访问级别?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:46:52 28 4
gpt4 key购买 nike

用代码更容易解​​释:

   class A {
protected:
A(int i) {}
void foo() {}
};

class B : public A {
public:
B() : A(0) {}
using A::A;
using A::foo;
};

int main()
{
B b1;
// [protected] A::foo => [public] B::foo
b1.foo(); // Ok
// [protected] A::A(int) => [protected] B::B(int)
B b2(0); // cannot access protected member
}

我在 VS2015 中尝试了代码。我可以使用 using 声明更改成员函数的访问级别,但我不能对构造函数执行相同的操作。这对我来说很奇怪。有谁知道为什么他们设计成这样?

最佳答案

在这种情况下不会生成构造函数,而是继承它们(实际上是从基类)。
根据documentation ,当继承一个构造函数时:

It has the same access as the corresponding base constructor

access 表示 access specifiers .
另一方面,对于成员方法:

Using-declaration introduces a member of a base class into the derived class definition, such as to expose a protected member of base as public member of derived.

在这种情况下,可以显式更改访问权限。

这就是为什么您可以使用 using 声明更改成员函数的访问级别,而您不能对构造函数执行相同的操作

关于c++ - 为什么使用声明生成的构造函数具有与基类相同的访问级别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36671798/

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