Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
7k 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 ...
8
votes
6answers
453 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! ...
6
votes
9answers
4k 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
6answers
583 views

Overload “base” constructor or “this” constructor?

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 ...
3
votes
8answers
551 views

Java Constructor Overloading using multiple methods

I have a program assignment in class. I already understand the basics of overloading but I am thoroughly confused on one point. How do I output from only the method I am trying to use? Well let me ...
3
votes
1answer
305 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
496 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: ...
0
votes
3answers
233 views

C# constructors overloading

How I can use constructors in C# like this: public Point2D(double x, double y) { // ... Contracts ... X = x; Y = y; } public Point2D(Point2D point) { if (point == null) ...