A special type of subroutine called at the creation of an object.

learn more… | top users | synonyms (2)

420
votes
7answers
140k views

What does the explicit keyword in C++ mean?

Someone posted in a comment to another question about the meaning of the explicit keyword in C++. So, what does it mean?
355
votes
11answers
36k views

Virtual member call in a constructor

I'm getting a warning from ReSharper about a call to a virtual member from my objects constructor. Why would this be something not to do?
313
votes
5answers
25k views

Do the parentheses after the type name make a difference with new?

If 'Test' is an ordinary class, is there any difference between: Test* test = new Test; //and Test* test = new Test();
266
votes
5answers
105k views

How do I call one constructor from another in Java?

Is it possible to call a constructor from another (within the same class, not from a subclass)? If yes how? And what could be the best way to call another constructor (if there are several ways to do ...
264
votes
4answers
154k views

Calling base constructor in c#

If I inherit from a base class and want to pass something from the constructor of the inherited class to the constructor of the base class, how do I do that? For example, If I inherit from the ...
188
votes
11answers
86k views

c++ call constructor from constructor

As an c# developer I'm used to run through constructors: class Test { public Test() { DoSomething(); } public Test(int count) : this() { DoSomethingWithCount(count); ...
161
votes
9answers
54k views

Interface defining a constructor signature?

It's weird that this is the first time I've bumped into this problem, but: How do you define a constructor in a C# interface? Edit Some people wanted an example (it's a free time project, so yes, ...
146
votes
6answers
157k views

C++ superclass constructor calling rules

What are the C++ rules for calling the superclass constructor from a subclass one?? For example I know in Java, you must do it as the first line of the subclass constructor (and if you don't an ...
124
votes
7answers
8k views

Rule-of-Three becomes Rule-of-Five with C++11?

So, after watching this wonderful lecture on rvalue references, I thought that every class would benefit of such a "move constructor", template<class T> MyClass(T&& other) edit and of ...
109
votes
4answers
51k views

Chain-calling parent constructors in python

Consider this - a base class A, class B inheriting from A, class C inheriting from B. What is a generic way to call a parent class constructor in a constructor? If this still sounds too vague, here's ...
99
votes
9answers
28k views

Why does this() and super() have to be the first statement in a constructor?

Java requires that if you call this() or super() in a constructor, it must be the first statement. Why? For example: public class MyClass { public MyClass(int x) {} } public class MySubClass ...
98
votes
6answers
38k views

Using “Object.create” instead of “new”

Javascript 1.9.3 / ECMAScript 5 introduces Object.create, which Douglas Crockford amongst others has been advocating for a long time. How do I replace new in the code below with Object.create? var ...
93
votes
6answers
92k views

Can an abstract class have a constructor?

Can an abstract class have a constructor? If so, how it can be used and for what purposes?
90
votes
4answers
51k views

Can I call a overloaded constructor from another constructor of the same class in C#?

Can I call a overloaded constructor from another constructor of the same class in C#?
86
votes
16answers
8k views

Use of .apply() with 'new' operator. Is this possible?

In JavaScript, I want to create an object instance (via the new operator), but pass an arbitrary number of arguments to the constructor. Is this possible? What I want to do is something like this ...
85
votes
4answers
23k views

What's wrong with overridable method calls in constructors?

I have a Wicket page class that sets the page title depending on the result of an abstract method. public abstract class BasicPage extends WebPage { public BasicPage() { ...
73
votes
4answers
29k views

call one constructor from another

I have two constructors which feed values to readonly fields. class Sample { public Sample(string theIntAsString) { int i = int.Parse(theIntAsString); _intField = i; ...
71
votes
12answers
4k views

Is there an alternative to bastard injection? (AKA poor man's injection via default constructor)

I most commonly am tempted to use "bastard injection" in a few cases. When I have a "proper" dependency-injection constructor: public class ThingMaker { ... public ThingMaker(IThingSource ...
70
votes
4answers
22k views

Javascript: prototypal inheritance

I am new to JavaScript OOP. Can you please explain me what the difference is between the following blocks of code. I tested and both blocks work. What's the best practice and why? First block: ...
66
votes
10answers
22k views

Best way to do multiple constructors in PHP

You can't put two __construct functions with unique argument signatures in a PHP class. I'd like to do this: class Student { protected $id; protected $name; // etc. public function ...
64
votes
23answers
12k views

When is it right for a constructor to throw an exception?

When is it right for a constructor to throw an exception? (Or in the case of Objective C: when is it right for an init'er to return nil?) It seems to me that a constructor should fail -- and thus ...
63
votes
7answers
19k views

overloading __init__ in python

Let's say I have a class that has a member called data which is a list. I want to be able to initialize the class with, for example, a filename (which contains data to initialize the list) or with ...
63
votes
8answers
1k views

Sending reference of object before its construction

I have seen the following code in one of our applications: public class First() { private Second _second; public First() { _second = new Second(this); // Doing ...
60
votes
9answers
20k views

Accessing constructor of an anonymous class

Lets say I have a concrete class Class1 and I am creating an anonymous class out of it. Object a = new Class1(){ void someNewMethod(){ } }; Now is there any way I could ...
55
votes
4answers
2k views

Infinite loop in constructor without for or while

I did a test here, but the output is a loop without ending, I don't know why. Actually, I am doing another test, but when I wrote this, I don't understand how the loop occurred. It is output "ABC" ...
53
votes
6answers
27k views

Throwing exceptions from constructors

Im having a debate with a co-worker about throwing exceptions from constructors, and thought I would like some feedback. Is it ok to throw exceptions from constructors, form a design point of view? ...
51
votes
5answers
22k views

Can constructors throw exceptions in Java?

Are constructors allowed to throw exceptions?
47
votes
10answers
77k views

Structure Constructor in C++?

Can a struct have a constructor in C++? I have been trying to solve this problem but I am not getting the syntax.
45
votes
11answers
35k views

Why do we not have a virtual constructor in C++?

Why does C++ not have a virtual constructor?
45
votes
4answers
4k views

What is a higher kinded type in Scala?

You can find the following in the web: Higher kinded type == type constructor? class AClass[T]{...} // e.g. class List[T] some say this is a higher kinded type because it abstracts over ...
42
votes
7answers
4k views

Default constructor with empty brackets

Is there any good reason that an empty set of round brackets (parentheses) isn't valid for calling the default constructor in C++? MyObject object; // ok - default ctor MyObject object(blah); // ...
42
votes
13answers
9k views

How to detect if a function is called as constructor?

Given a function: function x(arg) { return 30; } You can call it two ways: result = x(4); result = new x(4); The first returns 30, the second returns an object. How can you detect which way the ...
41
votes
6answers
35k views

initialize java HashSet values by construction

I need to create a Set with initial values. Set<String> h = new HashSet<String>(); h.add("a"); h.add("b"); Is there a way to do it in one command? Thanks
41
votes
8answers
9k views

Calling virtual functions inside constructors

Suppose I have two C++ classes: class A { public: A() { fn(); } virtual void fn() { _n = 1; } int getn() { return _n; } protected: int _n; }; class B : public A { public: B() : A() {} ...
41
votes
12answers
60k views

Default parameters with C++ constructors

Is it good practice to have a class constructor that uses default parameters, or should I use separate overloaded constructors? For example: // Use this... class foo { private: std::string ...
41
votes
4answers
18k views

Can I use Class.newInstance() with constructor arguments?

I would like to use Class.newInstance() but the class I am instantiating does not have a nullary constructor. Therefore I need to be able to pass in constructor arguments. Is there a way to do this?
40
votes
7answers
14k views

C# constructor chaining? (How to do it?)

I know that this is supposedly a super simple question, but I've been struggling with the concept for some time now. My question is, how do you chain constructors in c#? I'm in my first OOP class, so ...
40
votes
7answers
29k views

C# member variable initialization; best practice?

Is it better to initialize class member variables on declaration private List<Thing> _things = new List<Thing>(); private int _arb = 99; or in the default constructor? private ...
39
votes
9answers
18k views

Java Constructor Inheritance

I was wondering why in java constructors are not inherited? You know when you have a class like this: public class Super { public Super(ServiceA serviceA, ServiceB serviceB, ServiceC serviceC){ ...
39
votes
2answers
4k views

DataContractSerializer doesn't call my constructor?

I just realized something crazy, which I assumed to be completely impossible : when deserializing an object, the DataContractSerializer doesn't call the constructor ! Take this class, for instance : ...
37
votes
8answers
33k views

Why can't I create an abstract constructor on an abstract C# class?

I am creating an abstract class. I want each of my derived classes to be forced to implement a specific signature of constructor. As such, I did what I would have done has I wanted to force them to ...
37
votes
4answers
3k views

Why can't the C# constructor infer type?

EDIT: updated the question after PostMan pointed out the error on my part Just out of curiosity, does anybody know why type inference is not supported for constructor the way they are for generic ...
37
votes
2answers
17k views

Why is Class.newInstance() “evil”?

Ryan Delucchi asked here in comment #3 to Tom Hawtin's answer: why is Class.newInstance() "evil"? this in response to the code sample: // Avoid Class.newInstance, for it is evil. ...
36
votes
18answers
4k views

How much work should be done in a constructor?

Should operations that could take some time be performed in a constructor or should the object be constructed and then initialised later. For example when constructing an object that represents a ...
35
votes
5answers
9k views

Why should the copy constructor accept its parameter by reference in C++?

Why must a copy constructor be passed its parameter by reference?
35
votes
3answers
3k views

What is the return type of a constructor in C#?

I have asked this question for Java on this link I got some answers in java.Now i want to know it in C#. As we know the we do not have to add any return type to a C# constructor. class Sample{ ...
34
votes
5answers
10k views

In there a generic constructor with parameter constraint in C#

In C# you can put a constraint on a generic method like: public class A { public static void Method<T> (T a) where T : new() { //...do something... } } Is there also a way ...
34
votes
10answers
736 views

C++ constructor question

EDIT: This question came up and I think I aced it! Go StackOverflow!! :D I have exams coming up, and one of the questions on last years exams was to spot the problem with implementation of the ...
34
votes
6answers
5k views

OO Javascript constructor pattern: neo-classical vs prototypal

I watched a talk by Douglas Crockford on the good parts in Javascript and my eyes were opened. At one point he said, something like, "Javascript is the only language where good programmers believe ...
33
votes
14answers
8k views

How many constructor arguments is too many?

Let's say you have a class called Customer, which contains the following fields: UserName Email First Name Last Name Let's also say that according to your business logic, all Customer objects must ...

1 2 3 4 5 106