vote up 2 vote down star
1

I have a class with 2 constructors:

public class Lens
{
    public Lens(string parameter1)
    {
        //blabla
    }

    public Lens(string parameter1, string parameter2)
    {
       // want to call constructor with 1 param here..
    }
}

I want to call the first constructor from the 2nd one. Is this possible in C#?

flag

2 Answers

vote up 17 vote down check

Append :this(reqd params) at the end of the ctor to do 'constructor chaining'

public Test( bool a, int b, string c )
    : this( a, b )
{
    this.m_C = c;
}
public Test( bool a, int b, float d )
    : this( a, b )
{
    this.m_D = d;
}
private Test( bool a, int b )
{
    this.m_A = a;
    this.m_B = b;
}

Source Courtesy of csharp411.com

link|flag
That was pretty easy.. thanks! – Robbert Dam May 6 at 14:30
vote up 4 vote down

Yes, you'd use the following

public class Lens
{
    public Lens(string parameter1)
    {
       //blabla
    }

    public Lens(string parameter1, string parameter2) : this(parameter1)
    {

    }
}
link|flag
I think what would happen in the second constructor is that you'd create a local instance of Lens which goes out of scope at the end of the constructor and is NOT assigned to "this". You need to use the constructor chaining syntax in Gishu's post to achieve what the question asks. – Colin Desmond May 6 at 14:31
Yup, sorry about that. Corrected now. – mdresser May 6 at 14:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.