Tagged Questions
A special type of subroutine called at the creation of an object.
185
votes
9answers
18k 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?
165
votes
6answers
14k 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();
112
votes
7answers
42k 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?
108
votes
3answers
62k 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 ...
80
votes
8answers
26k 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, ...
63
votes
2answers
29k 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 ...
60
votes
9answers
35k 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);
...
59
votes
3answers
26k 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 ...
55
votes
12answers
2k 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 ...
54
votes
7answers
72k 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 ...
51
votes
6answers
2k 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 ...
40
votes
4answers
40k 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?
37
votes
14answers
3k 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 ...
37
votes
23answers
6k 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 ...
36
votes
10answers
8k 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 ...
36
votes
4answers
16k 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#?
34
votes
3answers
6k 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 ...
32
votes
10answers
663 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 ...
32
votes
5answers
7k 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() {
...
29
votes
5answers
670 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{
...
29
votes
4answers
3k views
Why should the copy constructor accept its parameter by reference in C++?
Why must a copy constructor be passed its parameter by reference?
29
votes
6answers
7k 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 ...
28
votes
18answers
2k 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 ...
27
votes
4answers
1k views
What is a higher kinded type in Scala?
You can find the following in the web (I omitted some sources to not denounce):
Higher kinded type == type constructor?
class AClass[T]{...} // e.g. class List[T]
some say this is a higher ...
27
votes
19answers
1k views
How much work should the constructor for an HTML parsing class do?
How much work is it reasonable for an object constructor to do? Should it simply initialize fields and not actually perform any operations on data, or is it okay to have it perform some analysis?
...
26
votes
4answers
14k views
How does Python's “super” do the right thing?
I'm running Python 2.5, so this question may not apply to Python 3. When you make a diamond class hierarchy using multiple inheritance and create an object of the derived-most class, Python does the ...
26
votes
6answers
15k 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 ...
26
votes
7answers
1k views
Why is it an error to use an empty set of brackets to call a constructor with no arguments?
Is there any good reason that an empty set of brackets isn't valid for calling the default ctor in c++?
MyObject object; // ok - default ctor
MyObject object(blah); // ok
MyObject object(); // ...
25
votes
4answers
920 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 ...
25
votes
10answers
5k 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 ...
24
votes
8answers
6k 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 ...
23
votes
6answers
2k 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 ...
23
votes
4answers
7k 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:
...
23
votes
7answers
20k 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 ...
23
votes
5answers
5k 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 ...
22
votes
1answer
170 views
Is the “textual order” across partial classes formally defined?
Specifically, in relation to field initializers (in this case, static) - ยง17.11 in ECMA 334:
If a class contains any static fields with initializers, those initializers are executed in textual ...
22
votes
5answers
514 views
How useful would Inheriting Constructors be in C++?
As I sit in the C++ Standards committee meetings, they are discussing the pros and cons of dropping Inheriting Constructors since no compiler vendor has implemented it yet (the sense being users ...
22
votes
11answers
1k views
How many variables should a constructor have?
I realize this is a pretty open question and could get a variety of answers, but here goes.
Using C# (or Java, or any OO language), is there a general rule that states how many variables should be ...
21
votes
10answers
1k views
Should a C++ constructor do real work? [closed]
Possible Duplicate:
How much work should be done in a constructor?
I'm strugging with some advice I have in the back of my mind but for which I can't remember the reasoning.
I seem to ...
21
votes
1answer
2k 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 :
...
21
votes
5answers
4k views
Strange syntax for instantiating an inner class
I didn't imagine that I would encounter radically new syntax in Java anymore at this stage, but lo and behold, I just encountered something:
The exact context and what the code below should do is ...
21
votes
15answers
30k 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 ...
20
votes
5answers
309 views
What is the most appropriate way to handle corrupt input data in a C# constructor?
I'm reading data in from a file and creating objects based on this data. The data format is not under my control and is occasionally corrupt. What is the most appropriate way of handling these errors ...
20
votes
6answers
2k views
a constructor as a delegate - is it possible in C#?
I have a class like below:
class Foo
{
public Foo(int x) { ... }
}
and I need to pass to a certain method a delegate like this:
delegate Foo FooGenerator(int x);
Is it possible to pass the ...
20
votes
12answers
6k views
Do you need to unit test a constructor
Do you need to unit test constructors, say I have a ctor like this,
IMapinfoWrapper wrapper;
public SystemInfo(IMapinfoWrapper mapinfoWrapper)
{
this.wrapper = ...
19
votes
4answers
643 views
Should we always have a zero-argument constructor in a Class?
Should every Java class have a zero-argument constructor?
19
votes
7answers
5k views
C# UserControl constructor with parameters
Call me crazy, but I'm the type of guy that likes constructors with parameters (if needed), as opposed to a constructor with no parameters followed by setting properties. My thought process: if the ...
19
votes
13answers
1k views
What is the point of setters and getters in java?
Please forgive the length, but here are two programs, both the exact same, but one with and one without setters, getters, and constructors.
I've taken a basic C++ class before and don't remember any ...
19
votes
8answers
29k views
Structure Constructor in C++?
Can a struct have a constructor in C++?
I have been trying to solve this problem but not getting any syntax.
19
votes
2answers
3k views
Why must const members be intialized in the constructor initializer rather than in its body?
Why must class members declared as const be initialized in the constructor initializer list rather than in the constructor body?
What is the difference between the two?