I like having some of the protection given by using const for all my GetXXX member functions. I also like to keep my synchronization objects as member variables. And unless I'm missing something, I ...
Using member initializers offers more control over what constructors do, and helps eliminate unnecessary default initialization. In C++, a constructor is a special class member function that provides ...