Inherited Constructors in C++11 -- Marius Bancila

A nice piece of writing on a C++11 feature:

Inherited Constructors in C++11

by Marius Bancila

From the article:

In C++, a function in a derived class with the same name as one (or a set of overloads) in a base class, hides the function (or the overloads) from the base class. Here is an example...

Add a Comment

Comments are closed.

Comments (1)

0 0

panqnik said on Mar 12, 2014 03:07 PM:

You might want to take a look on my post about virtual constructor in C++:
http://blog.panqnik.pl/dev/co-variant-and-virtual-constructor-in-c/