up vote 3 down vote favorite
share [g+] share [fb]

For instance, if I have a class like this:

namespace Sample
{
     public Class TestObject
     {
          private Object MyAwesomeObject = new MyAwesomeObject();
     }
}

Is there any benefit to set it up so that the property is set in the constructor like this?

namespace Sample
{
     public Class TestObject
     {
          private Object MyAwesomeObject;

          public TestObject()
          {
                MyAwesomeObject = new MyAwesomeObject()
          }
     }
}
link|improve this question

feedback

9 Answers

up vote 10 down vote accepted

The two are (nearly) identical.

When you define the initializer inline:

private Object MyAwesomeObject = new MyAwesomeObject(); 

This will happen prior to the class constructor code. This is often nicer, but does have a couple of limitations.

Setting it up in the constructor lets you use constructor parameters to initialize your members. Often, this is required in order to get more information into your class members.

Also, when you setup values in your constructors, you can use your class data in a static context, which is not possible to do with inlined methods. For example, if you want to initialize something using an expression tree, this often needs to be in a constructor, since the expression tree is in a static context, which will not be allowed to access your class members in an inlined member initializer.

link|improve this answer
Awesome, thanks for your answer! – onekidney Jan 4 '10 at 20:31
1  
What's a static context? Aren't you mistaken in where you are in a static context? – R. Martinho Fernandes Jan 4 '10 at 20:32
Sometimes, (especially with expression trees), you need to do something that works at the "class" level, in a static context (not tied to that specific instance). Here's one example: monotorrent.blogspot.com/2009/12/… In that case, you CAN'T initialize ChangeNotifier instances inline, because the "() => Property" expression is actually not tied to that class instance - it's static (in a static context). – Reed Copsey Jan 4 '10 at 20:34
If you take Alan's code, and try initializing the ChangeNotifier<T> instances inline, you'll find that the compiler complains with an error like: "Cannot access non-static property in a static context" – Reed Copsey Jan 4 '10 at 20:37
What I meant was that you are in a static context in a inline member initializer not in a constructor, as you state in the answer. Or maybe it's just me misunderstanding your English. I do find that last paragraph a little confusing... – R. Martinho Fernandes Jan 4 '10 at 20:42
feedback
  1. It makes it easier to do step by step debugging

  2. It makes it easier to control the order in which you call constructors

  3. It makes it possible to send parameters to the constructors based on some logic or passed in argument to the object you are working on.

link|improve this answer
feedback

Another nice property of initializing stuff at the declaration site is that doing so on readonly fields guarantees that the field is not observable in its default (initiaized to zero) state.

Here's my article on the subject:

http://blogs.msdn.com/ericlippert/archive/2008/02/18/why-do-initializers-run-in-the-opposite-order-as-constructors-part-two.aspx

link|improve this answer
feedback

The only benefit is that you can be a bit more dynamic in the constructor, where inline initialization requires that you only use static values for constructor arguments and such. For example, if MyAwesomeObject needs the value from a config file, you would have to set that in the constructor

link|improve this answer
1  
I would argue that if something needs information from a file, that should be passed into it from outside or else done in some kind of initialization. I try and make constructors as simple and fast as possible. – tster Jan 4 '10 at 20:30
feedback

Fields are initialized immediately before the constructor for the object instance is called. If the constructor assigns the value of a field, it will overwrite any value given during field declaration.

See Fields (C# Programming Guide).

link|improve this answer
feedback

In your particular example, there's no advantage.

There is, however, lazy instantiation, which reduces your memory footprint in many cases:

namespace Sample
{
     public Class TestObject
     {
          private Object m_MyAwesomeObject;

          public TestObject()
          {

          }

          public Object MyAwesomeObject
          {
              get
              {
                  if (m_MyAwesomeObject == null)
                      m_MyAwesomeObject = new Object();

                  return m_MyAwesomeObject;
              }
          }
     }
}
link|improve this answer
feedback

I like to keep all initialization for any class property whether primitive or object in the class constructor(s). Keeps the code easier to read. Easier to debug. Plus the intention of a constructor is to initialize your classes properties.

Also for clients developing against your classes it's nice to make sure that all your properties get a default value and all objects get created. Avoids the NullReferenceExceptions, when a client is using your class. For me putting this all in constructors makes it easier to manage.

link|improve this answer
feedback

I do not like to duplicate code, even if it is among a (hopefully) small number of constructors. To that end I tend to favor inline initialization wherever it makes sense.

link|improve this answer
+1 for not duplicating code. Note that if you want the advantages of including the code in the constructor an alternative is to initialise these members in one constructor (usually the default constructor) and then call that constructor from all your other constructors, so that the initialisation code is still shared. – Jason Williams Jan 4 '10 at 21:06
I do very often use that approach when there is some logic needed to set up the class. Where there is just one constructor that takes several arguments and any other constructors call it with default values. – Dolphin Jan 4 '10 at 22:01
feedback

Generally, requiring a non-default constructor ensures that the instance is in something other than the default state. This also allows immutable classes, which have their own advantages.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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