Tagged Questions

5
votes
9answers
1k views

Python: Problem with overloaded constructors

WARNING: I have been learning Python for all of 10 minutes so apologies for any stupid questions! I have written the following code, however I get the following exception: Message File …
5
votes
4answers
900 views

Constructor overloading in Java - best practice

There are a few topics similar to this, but I couldn't find one with a sufficient answer. I would like to know what is the best practice for constructor overloading in Java. I already have my own …
1
vote
9answers
177 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 …
5
votes
6answers
318 views

Overload “base” contructor or “this” contructor?

I have few types that derive from simplified Base as shown below. I am not sure whether to use base class's constructor or this constructor when overloading constructors. ConcreteA overloads …