Tagged Questions

15
votes
10answers
11k views

Thread safe lazy construction of a singleton in C++

Is there a way to implement a singleton object in C++ that is: Lazily constructed in a thread safe manner (two threads might simultaneously be the first user of the singleton - it should still only ...
11
votes
2answers
150 views

Referencing the same variable that you're declaring

I've seen the following type mistake a couple of times while working with C++ code: QString str = str.toUpper(); This can be a fairly easy mistake to make and yet it compiles and executes ...
6
votes
5answers
129 views

Other way to prohibit a certain C++ class construction except than declaring the constructor private?

Say I have a class with some const reference member variable and I would like to forbid a certain type of construction. So I would declare the according constructor private. Of course, a constructor ...
5
votes
4answers
156 views

Giant switch statement for constructors

I have a container which holds a bunch of pointers to a base class, and a function which takes some input and returns a class which is a subclass of the base class. Which subclass it returns depends ...
4
votes
10answers
796 views

Emptying a C++ object

Often I add an Empty method to my C++ objects to clear the internal state using code similar to the following. class Foo { private: int n_; std::string str_; public: Foo() : n_(1234), ...
3
votes
4answers
305 views

Understanding the efficiency of an std::string

I'm trying to learn a little bit more about c++ strings. consider const char* cstring = "hello"; std::string string(cstring); and std::string string("hello"); Am I correct in assuming that both ...
2
votes
2answers
98 views

In place constrution of member variable via constructor

Take the following class: template <typename TPayload> class Message { public: Message(const TPayload& payload) : m_header(sizeof(TPayload)), ...
1
vote
2answers
81 views

C++, weird “candidate expects 1 argument, 0 provided” in constructor

I'm making a simple threaded server application in C++, thing is, I use libconfig++ to parse my configuration files. Well, libconfig doesn't support multithreading, thus I'm using two wrapper classes ...
1
vote
5answers
59 views

In-explicit constructing in operator overloading?

Is it possible use in-explicit constructing with operators ? Just like in this example (which does of course not work): class myFoo { public: double x, y; myFoo(double, double); ...
1
vote
2answers
92 views

Cross source file template instantiation and use

I have a class with several template member functions that I would like to distribute among several source files to speed up compilation times. (The templates are implementation details and are not ...
0
votes
3answers
35 views

Mark constructor as __explicitly__ requiring an object type

I have a constructor that accepts an object of type Material: SomeClass::SomeClass( const Material& mat ) ; However, Material allows construction by a Vector: Material::Material( const ...
0
votes
2answers
57 views

Delay true base class construction with placement new

I'm asking if (and why) the following approach is a) legal and b) moral. I'm asking with emphasis on C++03, but notes on C++11 are welcome, too. The idea is to prevent derived classes that could ...
0
votes
7answers
233 views

The ** idiom in C++ for object construction

In a lot of C++ API'S (COM-based ones spring to mind) that make something for you, the pointer to the object that is constructed is usually required as a ** pointer (and the function will construct ...
0
votes
2answers
152 views

C++ referring to an object being constructed

In C++ I have a reference to an object that wants to point back to its owner, but I can't set the pointer during the containing class' construction because its not done constructing. So I'm trying to ...