How do delegating constructors interact with pure virtual calls? -- StackOverflow
A short useful Q&A about how two C++ features interact:
C++11 Delegated Constructor Pure Virtual Method & Function Calls -- Dangers?
In C++ 11, what are the dangers of invoking Pure Virtual functions in a class' constructor, during construction, but after the class/object has been "fully constructed" via constructor delegation?
...