I have looked at similar queries but I seem to be getting myself lost. I have a simple example, so please consider the following:
#include <iostream>
using namespace std;
class Animal
{
public:
Animal() {cout << "Animal" << endl;}
};
class Cat : public Animal
{
public:
Cat() {cout << "Cat" << endl;};
};
int main()
{
Cat c;
return 0;
}
When the program runs, it displays
Animal
Cat
My question is now this: Which constructor is actually called first. Is Cat() called and then Cat() calls Animal() before it executes its contents OR does the compiler/program look at Cat(), see that it's an Animal() and calls Animal() first then Cat()?
When the Cat constructor is called, two things happens, first the initialization list is executed and then the construction function. Implicitly you are doing this:
Then the Animal constructor is executed before the Cat implementation of the Cat constructor, but after it initialization list. For example, if the Cat and Animal classes have some members and you want to initialize them in the constructor, you could see this more easily: