vote up 4 vote down star
1

Hello,

I have been trying to figure out if there are any differences between these constructors. Assuming there is a Foo() constructor that takes no arguments, are all these constructors going to have the same result?

Example 1

public Foo(int bar)
    : this()
{
     blah;
     blah;
     blah;
}

Example 2

public Foo(int bar)
{
     this();
     blah;
     blah;
     blah;
}

Example 3

public Foo(int bar)
{
     this = new Foo();
     blah;
     blah;
     blah;
}
flag

+1 taught me something new with Example#3 n the fact that J S is always lurking – Gishu Jun 16 at 14:24

3 Answers

vote up 19 vote down check

Leaving aside the fact that you haven't declared the type of bar:

  • Example 1 is valid (assuming there is a parameterless constructor), and calls the parameterless constructor as part of initialization. See my article on constructor chaining for more details.
  • Example 2 is never valid
  • Example 3 is only valid when Foo is a struct, and doesn't do anything useful.

I would steer clear of assigning to this in structs. As you can see from the other answers, the very possibility of it is fairly rarely known (I only know because of some weird situation where it turned up in the spec). Where you've got it, it doesn't do any good - and in other places it's likely to be mutating the struct, which is not a good idea. Structs should always be immutable :)

EDIT: Just to make people go "meep!" a little - assigning to this isn't quite the same as just chaining to another constructor, as you can do it in methods too:

using System;

public struct Foo
{
    // Readonly, so must be immutable, right?
    public readonly string x;

    public Foo(string x)
    {
        this.x = x;
    }

    public void EvilEvilEvil()
    {
        this = new Foo();
    }
}

public class Test
{
    static void Main()
    {
        Foo foo = new Foo("Test");
        Console.WriteLine(foo.x); // Prints "Test"
        foo.EvilEvilEvil();
        Console.WriteLine(foo.x); // Prints nothing
    }
}
link|flag
I wasn't aware 3 was legal, but you're right, it is. I always accomplished the same thing by chaining the parameterless constructor. – mquander Jun 16 at 14:08
I had always thought that : was used for inheritance - is there any inheritance happening in Example 1, or is this just an overloaded usage of the colon? – Tim Jun 16 at 14:09
1  
The colon just means something different in this context. Constructor chaining on MSDN: msdn.microsoft.com/en-us/library/… – mquander Jun 16 at 14:10
1  
That example is quite remarkable. I'm very surprised that you can do such a thing. – mquander Jun 16 at 14:14
Thanks for help everyone! – Tim Jun 16 at 14:14
show 5 more comments
vote up 10 vote down

Examples 2 and 3 are not legal C#.

EDIT: Jon points out accurately that 3 is legal when Foo is a struct. Go check out his answer!

link|flag
vote up 4 vote down

No they will not because only the first constructor is actually legal. The other two are illegal for various reasons.

EDIT Interesting, 3 is indeed legal when Foo is a struct. But even in that case, it is a redundant assignment.

link|flag

Your Answer

Get an OpenID
or

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