Tagged Questions

3
votes
7answers
134 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. …
0
votes
1answer
57 views

Castle Windsor: Problem with Multiple Constructors

Hello stackoverflow! Long-time reader first time writer here. I am currently undertaking a conversion from to the use of Ninject to the current release of Castle Windsor for a sim …
1
vote
4answers
135 views

C++ Constructor and Destructor

I'm getting some errors when compiling my program. They relate to the constructor and destructor of my class Instruction. Errors are: /tmp/ccSWO7VW.o: In function `Instruction::I …
2
votes
2answers
33 views

Calling another constructor from a constructor in PHP

I want a few constructors defined in a PHP class. However, my code for the constructors is currently very similar. I would rather not repeat code if possible. Is there a way to cal …
0
votes
5answers
121 views

C#: How do you write test cases for constructors and constructor overloads?

Say you have this shell of a class: public class Number { private int value; public Number() : this(0) {} public Number(int initialValue) : this(init …
0
votes
2answers
49 views

php function __construct() question involving this->get = $_GET

I'm working on someone's code and they have a constructor that uses: class qwerty { public function __construct(){ // some other code $this->get = $_GET; } } My question …
8
votes
6answers
207 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 poss …
4
votes
7answers
127 views

When does it make more sense to use the factory pattern rather than an overloaded constructor to instantiate an object?

In Karl Seguin's Foundations of Programming there is a small section on using the factory pattern. He closes the passage by stating "you can accomplish the same functionality with …
1
vote
6answers
101 views

how to know which constructor was used in creating an object?

Consider Class A has two constructors new A(int), new A(int, String) also it has a method show() Then given a statement like, A a1= new A(4); A a2= new A(3, "foo"); and …
0
votes
4answers
93 views

Duplicating base-class constructors to subclass?

I have a large set classes which I need to "wrap" in a very thin subclass. The functionality of the base classes doesn't change, and their interface remains intact. The problem is …
0
votes
2answers
223 views

How to create a 2D array in C++ using this specific container

I'm trying to port a int a[][] from Java to C++. I'm using this class as a container ArrayRef for ints because it handles references, and the project uses it extensively. In the …
2
votes
4answers
157 views

Generics, abstract classes, constructors

I have an abstract base class class AbstractClass { Col<AbstractClass> parent public AbstractClass() { //do stuff } } I have two implementations …
6
votes
6answers
468 views

C++: When (and how) are C++ Global Static Constructors Called?

Hi, I'm working on some C++ code and I've run into a question which has been nagging me for a while... Assuming I'm compiling with GCC on a Linux host for an ELF target, where are …
3
votes
1answer
225 views

What’s wrong with my Shared Add-in Constructor?

Good morning, fellows developers: I'm currently trying to fix several performance issues of an Excel Shared Add-in inherited from a previous developer, basically I'm trying to fin …
1
vote
2answers
149 views

Manual invocation of constructor?

Suppose I am allocating an arbitrary block of memory. Part of this block is atomic data (ints, bytes, etc.) and some of this block of data I want to be occupied by objects. Can I …

1 2 3 next
15 30 50 per page