Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
4k 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 ...
9
votes
7answers
469 views

: this() As a constructor

I'm trying to get a better understanding of general practice... specifically deriving this() in a constructor. I understand that its less code, but I consider it less readable. Is it common/good ...
7
votes
3answers
1k views

Delphi: Understanding constructors

i'm looking to understand virtual override overload reintroduce when applied to object constructors. Every time i randomly add keywords until the compiler shuts up - and (after 12 years of ...
6
votes
3answers
201 views

Understanding constructor visibility

Here's two simple classes, initially both have no keywords (virtual, overload, override, reintroduce): TComputer = class(TObject) public constructor Create(Teapot: Integer); end; TCellPhone = ...
6
votes
7answers
2k views

What does this colon (:) mean?

Before the this keyword is a colon. What can anyone explain what this colon means in this context? I don't believe this is inhertance. Thanks using System; namespace LinkedListLibrary { class ...
5
votes
3answers
147 views

Is this a good or bad way to use constructor chaining? (… to allow for testing)

My motivation for chaining my class constructors here is so that I have a default constructor for mainstream use by my application and a second that allows me to inject a mock and a stub. It just ...
4
votes
5answers
903 views

Delphi: How to hide ancestor constructors?

Update: gutted the question with a simpler example, that isn't answered by the originally accepted answer Given the following class, and its ancestor: TComputer = class(TObject) public ...
3
votes
2answers
71 views

Constructor order in subclasses

In a descendant class, is there a way to call both the public, parameterized constructor, as well as the protected/private constructor, while still making a call to the base class' constructor? For ...
3
votes
2answers
182 views

In C# 4, how can I have constructors with optional parameters in a subclass of a parent with an overloaded constructor?

I have a parent class that has an overloaded constructor, and I have a subclass that has a constructor with optional parameters. Is there a way to have the subclass's constructors still expose the ...
3
votes
2answers
126 views

Constructor chaining in conjunction with the base constructor invocation

Say I have the following: class Base { public Base (int n) { } public Base (Object1 n, Object2 m) { } } class Derived : Base { string S; public Derived (string s, int n) : base(n) ...
3
votes
3answers
133 views

Constructor chaining with intermediate variables

I have the following situtation with overloaded constructors which I'm struggling to find a nice solution to. I can't see how to use an intermediate assignment with constructor chaining. The ...
3
votes
4answers
468 views

Delphi: How to add a different constructor to a descendant?

Update: The example i originally had was kind of complex. Here's a simple 8 line example that explains everything in one code block. The following does not compile gives a warning: TComputer = ...
3
votes
7answers
338 views

What is C# code doing:

In the following code: public class A { public A():this(null){} public A(string b){/*code here*/} } What is the use of first constructor?
3
votes
4answers
247 views

What does a constructor with an empty body and inheritance-like syntax do?

public class PhotoList : ObservableCollection<ImageFile> { public PhotoList() { } **//this is the line that I dont recognise!!!!!!!!!!** public PhotoList(string path) : this(new ...
2
votes
4answers
807 views

C# constructor chaining - changing the order of execution

I want to know how to change the order of execution when chaining constructors in C#. The only methods I have seen require the chained constructor to be called first, outside of the current ...
2
votes
4answers
862 views

Delphi: When does reintroduce hide ancestors and when does it show them?

Today Recently on Stackoverflow i learned that: reintroduce is used to hide ancestor constructors reintroduce is used to show ancestor constructors i've been trying to make sense of it all, so ...
2
votes
3answers
392 views

Proper way to accomplish this construction using constructor chaining? (C#)

I have an assignment for my first OOP class, and I understand all of it including the following statement: You should create a class called ComplexNumber. This class will contain the real and ...
1
vote
4answers
78 views

chaining constructors in Java without throwing exceptions from the default constructor

I've read this: Can I use throws in constructor? -- which gave me the right idea, and led me to one answer, but was not very explicit. I've also read several others, but could not find my answer. To ...
1
vote
1answer
102 views

issue with int to float

Here is my issue. I have a constructor that makes a color from 4 floats ranging 0 to 1. I want to add compatibility with 0 to 255 int so I have another constructor like this: AguiColor::AguiColor( ...
1
vote
1answer
548 views

Delphi: Overridden virtual constructor descendant not being called by overload

Yet another in my series of questions regarding constructors in Delphi. i have a base class that has has the virtual constructor: TComputer = class(TObject) public constructor Create(Teapot: ...
1
vote
4answers
192 views

How to chain these constructors (C#)?

I'm just getting the concept of chaining constructors down, but I can't figure out how to chain these two particular constructors together, so I would appreciate it if somebody could help me out. ...
0
votes
3answers
47 views

PHP > How to divide a Class into multiple Class?

I have a very big PHP class called "Player". There is a lot of functions inside it(almost 2000 lines). Actually, I use those functions in this way : $player = new Player(1) echo ...
0
votes
3answers
74 views

How to access a class field in a complicated chain of classes

My class A creates in its constructor an instance of class B. Class B's constructor creates an instance of its inner class C. Class C needs a field in its constructor from class A and here is the ...
0
votes
2answers
63 views

SCJP v6 (Sierra,Bates) Chapter 2, Question 12 Interpretations of constructor calls

Could I have some feedback on this Given "new House("x ")" sends a string I had expected that the "House(String name)" constructor would have called the Building super class constructor ...
0
votes
2answers
186 views

Chaining constructors in JavaScript

I'm trying to implement some kind of class hierarchy in JavaScript. I think I understood the prototype chain, but I still have to sort out the constructor-chaining. Following David Flanagan's ...
0
votes
1answer
204 views

Chaining function calls jQuery style

Hi I've been playing around trying to recreate the way in which jQuery chains it's functions for it's "select" then "do" behaviour. Note: I don't want to chain functions with jQuery, I want to chain ...
0
votes
1answer
141 views

Boo Constructor Chaining

In C# when I want to chain constructors together I'd do this... public class OperationMacro : GeneratePropertyMacro { public OperationMacro() : base("Operation") { //Whatever else I need ...
0
votes
4answers
202 views

Overloaded constructor chain

Original Question Consider the following scenario: public abstract class Foo { public string Name { get; set; } public Foo() { this.Name = string.Empty; } public ...
0
votes
3answers
100 views

Help Using Constructors for this situation? (C#)

I'm in my first OOP class and I really like it, but on this assignment, I'm not really sure what the best (most efficient, less code, etc.) way to use constructors in this situation? Preferably using ...