The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
41 views

Unit testing legacy code with multiple constructors but no getter methods

I am trying to unit test (in java) a piece of code which has several constructors and some with logic in them. So apart from setting some fields, the constructors may affect certain static objects ...
10
votes
3answers
361 views

How to extend ImageView in an Android-Scala app?

I have tried many solutions found in google by the keywords: multiple constructors, scala, inheritance, subclasses. None seems to work for this occasion. ImageView has three constructors: ...
-2
votes
4answers
119 views

I need to create two more constructors, but Java won't let me

OK, I need to create three constructors as part of a project, one default, one general and one copy. I've managed to create a default constructor, but I can't create either the general or copy ...
3
votes
5answers
99 views

How to simplify multiple constructors?

I would like to have two constructors for a class, as follows: public MyClass() { // do stuff here } public MyClass(int num) { MyClass(); // do other stuff here } Is the above the ...
2
votes
4answers
953 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) { ...
2
votes
2answers
598 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 ...
7
votes
2answers
533 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 ...
7
votes
3answers
728 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 ...
5
votes
6answers
158 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: ...
2
votes
2answers
545 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!
4
votes
5answers
336 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) { } ...
5
votes
2answers
2k 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 ...
1
vote
1answer
1k 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 ...
24
votes
5answers
2k 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 ...
6
votes
2answers
5k 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 ...
4
votes
3answers
258 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. ...
6
votes
3answers
737 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 ...
3
votes
2answers
974 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 ...
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 ...
0
votes
3answers
659 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: ...