In the following my compiler says that my derived class constructor cannot be found:
struct Drink
{
Drink(const Drink& other);
};
struct PepsiMax : Drink {};
int main()
{
PepsiMax myPepsi; // <--- the default constructor of PepsiMax cannot be referenced, it is a deleted function
}
I know the default constructor of Drink needs to be defined, because I created a copy constructor and the compiler won't make a default constructor for me. However the error message says that it can't find the default constructor for my PepsiMax class, which I expected it to generate. If I define the default constructor for PepsiMax, it then shows an error saying that it can't find the Drink default constructor, which is what I expect.
Can I assume that it's referring to the default constructor of 'Drink' and not 'PepsiMax', or am I misunderstanding something? I expected the compiler to create a default constructor for 'PepsiMax' which calls the base class constructor immediately as the first thing it does.
Edit: My confusion is cleared up, thanks for your help. My explanation about my naive interpretation of the compiler-generated constructor is in an answer.
The fix is to write
The presence of the copy constructor obviates the automatic generation of the default constructor (as you know). But this also means that the compiler cannot generate the default constructor for
PepsiMax
on whichPepsiMax myPepsi;
is relying. You need to re-introduce it.