vote up 5 vote down star

Before the this keyword is a colon. What can anyone explain what this colon means in this context? I don't believe this is inhertance.

Thanks

using System;

namespace LinkedListLibrary
{
    class ListNode
    {
        private object data;
        private ListNode next;

        public ListNode(object dataValue)
            : this(dataValue, null)
        {
        }

        public ListNode(object dataValue, ListNode nextNode)
        {
            data = dataValue;
            next = nextNode;
        }

        public ListNode Next
        {
            get
            {
                return next;
            }
            set
            {
                next = value;
            }
        }
        public object Data
        {
            get
            {
                return data;
            }
        }


    }
}
flag
1  
See stackoverflow.com/questions/338398/… – Rob Kennedy Jul 1 at 20:22
The MSDN covers the usage of the base and this keywords for constructors here: msdn.microsoft.com/en-us/library/… – rmoore Jul 1 at 20:24
1  
And also see- yoda.arachsys.com/csharp/constructors.html/… – RichardOD Jul 1 at 20:26

7 Answers

vote up 0 vote down

Constructor chain arguments. There is also ": base()" for chaining a call to a constructor on the base type.

link|flag
vote up 1 vote down

The code is telling the other constructor to execute with the supplied arguments before the body of the current constructor is executed.

link|flag
I think you're thinking of C++. This is C#. – Jon Skeet Jul 1 at 20:33
Doh. That's what happens when my glance at the tags is just a bit too quick. – Jeff L Jul 1 at 20:41
Might I suggest either editing out the C++ part (which is still somewhat confusing to a C# developer) or deleting the answer? – Jon Skeet Jul 1 at 20:47
Removed the part about C++ initialization lists. – Jeff L Jul 1 at 21:13
vote up 1 vote down

No, that enables you to execute the existing constructor overload (the one with two parameters), before executing the body of the new constructor.

That's the simplest way to reuse the constructor code in multiple constructor overloads.

link|flag
vote up 3 vote down

It calls the other ListNode constructor. You can do a similar thing with the base keyword to call a constructor of a class you're deriving from.

link|flag
vote up 6 vote down

It means before running the body, run the constructor with object and ListNode parameters.

link|flag
vote up 24 vote down

It (along with the this keyword) is instructing the constructor to call another constructor within the same type before it, itself executes.

Therefore:

public ListNode(object dataValue)
    : this(dataValue, null)
{
}

effectively becomes:

public ListNode(object dataValue)
{
    data = dataValue;
    next = null;
}

Note that you can use base instead of this to instruct the constructor to call a constructor in the base class.

link|flag
vote up 6 vote down

It is constructor chaining so the constructor with the subsequent : this call will chain to the ctor that matches the signature.

So in this instance

public ListNode(object dataValue)

is calling

public ListNode(object dataValue, ListNode nextNode)

with null as the second param via : this(dataValue, null)

it's also worthy to note that the ctor being called with the colon executes before the ctor that was called to initialize the object.

link|flag
1  
"ctor being called executes before": This is why in my WinForms apps, I overload the constructor, and end up with InitializeComponent() in the constructor with all of the parameters. The default constructor will call the overload, and pass default arguments. Usually I'll wind up with a chain of (0 params)->calls->(1 param)->calls->(2 params)->etc->(most params). By supplying empty ctors like "MainForm() : this( 1, null ) { }" I end up with not much overhead, and save myself from repeating code in the constructors. Bonus. – mpbloch Jul 1 at 21:17

Your Answer

Get an OpenID
or

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