Tagged Questions
The multiple-constructors tag has no wiki summary.
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 ...
16
votes
5answers
1k views
In Scala, how can I subclass a Java class with multiple constructors?
Suppose I have a Java class with multiple constructors:
class Base {
Base(int arg1) {...};
Base(String arg2) {...};
Base(double arg3) {...};
}
How can I extend it in Scala and still ...
7
votes
3answers
299 views
Few questions about constructors in C#
In C# regarding the inheritance of constructors:
I have read that constructors cannot be inherited.
If the base class contains a constructor, one or more, the derived class have to always call one ...
6
votes
3answers
387 views
Which is better Java programming practice: stacking enums and enum constructors, or subclassing?
Given a finite number of items which differ in kind, is it better to represent them with stacked enums and enum constructors, or to subclass them? Or is there a better approach altogether?
To give ...
5
votes
6answers
151 views
C++ constructor question
In the C++ programming for the absolute Beginner, 2nd edition book, there was the following statement:
HeapPoint::HeapPoint(int x, int y): thePoint(new Point(x,y)) { }
Is this equal to:
...
4
votes
2answers
136 views
How to implement php constructor that can accept different number of parameters?
How to implement php constructor that can accept different number of parameters?
Like
class Person {
function __construct() {
// some fancy implementation
}
}
$a = new ...
4
votes
2answers
557 views
Default value for boost::shared_ptr on class constructor
Suppose I have class like
class A{
public:
A(int a, boost::shared_ptr<int> ptr){
// whatever!
}
};
My question is, what's the default value for that ptr? I'd like to be ...
4
votes
3answers
115 views
C# - Adding to an existing (generated) constructor
I have a constructor that is in generated code. I don't want to change the generated code (cause it would get overwritten when I regenerate), but I need to add some functionality to the constructor.
...
3
votes
5answers
105 views
this() and base() constructors in C#
There seems to be no language syntax for specifying both a this() and a base() constructor. Given the following code:
public class Bar : Foo
{
public Bar()
:base(1)
//:this(0)
{ }
...
3
votes
2answers
388 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 call other constructors ...
2
votes
2answers
189 views
Scala: Generic class with multiple constructors
I'm trying to create a generic class like this:
class A[T](v: Option[T]) {
def this(v: T) = this(Some(v))
def this() = this(None)
def getV = v
}
Then I do some testing:
scala> new A getV
...
2
votes
2answers
3k views
MEF Constructor Parameters with Multiple Constructors
I'm starting to use MEF, and I have a class with multiple constructors, like this:
[Export(typeof(ifoo))]
class foo : ifoo {
void foo() { ... }
[ImportingConstructor]
void foo(object ...
1
vote
4answers
52 views
How to declare constructors in base classes so that sub-classes can use them without declaring them?
I want a subclass to use its parent's constructors. But it seems I always need to define them again in the subclass in order for that to work, like so:
public SubClass(int x, int y) : base (x, y) {
...
0
votes
2answers
153 views
javascript: different constructors for same type of object
is it possible to have more than one constructors for a class in javascript?
i.e. one with zero parameters, one with one, one with two, etc...
if so, how?
thanks!
0
votes
1answer
329 views
Unity and constructors
Is it possible to make unity try all defined constructors starting with the one with most arguments down to the least specific one (the default constructor)?
Edit
What I mean:
foreach (var ...
0
votes
3answers
479 views
C# string insertions confused with optional parameters
I'm fairly new to C#, and trying to figure out string insertions (i.e. "some {0} string", toInsert), and ran across a problem I wasn't expecting...
In the case where you have two constructors:
...