Vererbung von C ++ 11-Konstruktoren und Konstruktoren ohne Parameter

Warum wird in diesem Codeteil der Konstruktor von A ohne Parameter nicht geerbt? Gibt es eine spezielle Regel, die verhindert, dass Konstruktoren ohne Parameter vererbt werden?

struct A {
    A(void *) {}
    A() {}
};

class B : public A {
public:
    using A::A;
    B(int x) {}
};

void f() {
    B b(1);
    B b2(nullptr);
    B b3; // error
}

clang ++ -std = c ++ 11 gibt diesen Fehler aus und g ++ -std = c ++ 11 gibt eine im Wesentlichen ähnliche Fehlermeldung aus:

td.cpp:15:7: error: no matching constructor for initialization of 'B'
    B b3; // error
      ^
td.cpp:9:5: note: candidate constructor not viable: requires single argument 'x', but no arguments
      were provided
    B(int x) {}
    ^
td.cpp:8:14: note: candidate constructor (inherited) not viable: requires 1 argument, but 0 were
      provided
    using A::A;
             ^
td.cpp:2:5: note: inherited from here
    A(void *) {}

Antworten auf die Frage(2)

Ihre Antwort auf die Frage