Tagged Questions

8
votes
6answers
452 views

Why is my overloaded C++ constructor not called?

I have a class like this one: class Test{ public: Test(string value); Test(bool value); }; If I create an object like this: Test test("Just a test..."); The bool constructor is called! ...
3
votes
1answer
304 views

Enums, Constructor overloads with similar conversions

Why does VisualC++ (2008) get confused 'C2666: 2 overloads have similar conversions' when I specify an enum as the second parameter, but not when I define a bool type? Shouldn't type matching ...
1
vote
9answers
495 views

Optional reference member - is it possible?

I have the following class class CItem { public: CItem(CRegistry &Registry) _Registry(Registry) {Registry.Register();} ~CItem() {_Registry.Unregister()}; private: CRegistry ...
0
votes
4answers
138 views

Calling overloaded constructor from constructor initialisation list

In the code below, my intent is to call one of two overloaded constructors for the kap (class opacity) based on what arguments are passed to the object of class material: class opacity{ private: ...