Search Results

0
votes

Initializing a union with a non-trivial constructor

You'll have to wait for C++0x to be supported by compilers to get this. Until then, sorry. …
1
vote

C++ Constructor

There are usually some good reasons to use an initialization list. For one, you cannot set member variables that are references outside of the initialization list of the constructor. Also if a me …
1
vote

Named constructor and inheritance

It's generally not a good idea to force creation of objects using shared_ptr by hiding the constructors. I'm speaking from personal experience here working with an internal company li …