Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been programming in C# and Java recently and I am curious what people would consider the best practice concerning when you should initialize your classes fields?

Should you do it at declaration?:

public class Die
{

    private int topFace = 1;
    private Random myRand = new Random();

    public void Roll()
    {
       // ....
    }
}

or in a constructor..

public class Die
{

    private int topFace;
    private Random myRand;

    public Die()
    {
        topFace = 1;
        myRand = new Random();
    }

    public void Roll()
    {
        // ...
    }
}

I'm really curious what some of you veterans think is the best practice.. I want to be consistent and stick to one approach.

share|improve this question

8 Answers

up vote 87 down vote accepted

My rules:
1. Don't initialize with the default values in declaration (null, false, 0, 0.0...).
2. Prefer initialization in declaration if you don't have a constructor parameter that changes the value of the field.
3. If the value of the field changes because of a constructor parameter put the initialization in the constructors.
4. Be consistent in your practice. (the most important rule)

share|improve this answer
I don't really understand 1. Do you mean the default value of the type, or the value you want as default. Say I declare an int which default should be 5 I shouldn't do it in declaration, but in the constructor? – didibus Sep 11 '12 at 19:54
2  
I expect that kokos means that you should not initialize members to their default values (0, false, null etc.), since the compiler will do that for you (1.). But if you want to initialize a field to anything other than its default value, you should do it in the declaration (2.). I think that it might be the usage of the word "default" that confuses you. – Ricky Helgesson Oct 11 '12 at 17:12
5  
I disagree with rule 1 - by not specifying a default value (regardless of whether it's initialised by the compiler or not) you are leaving the developer to guess or go looking for the documentation on what the default value for that particular language would be. For readability purposes, I would always specify the default value. – James Jan 9 at 12:50
2  
The default value of a type default(T) is always the value that has an internal binary representation of 0. – Olivier Jacot-Descombes Mar 13 at 19:26
I like to initialize the values in the declaration only when all contructors would otherwise result in that same value when they exit anyway, otherwise I have the contructor do the initialization. And I would initialize with default values if that is the "default" the class is expecting. The compiler should optimize the initialization anyway. – Cemafor Apr 26 at 18:54

In C# it doesn't matter. The two code samples you give are utterly equivalent. In the first example the C# compiler (or is it the CLR?) will construct an empty constructor and initialise the variables as if they were in the constructor. If there is already a constructor then any initialisation "above" will be moved into the top of it.

In terms of best practice the former is less error prone than the latter as someone could easily add another constructor and forget to chain it.

share|improve this answer
22  
+1 the constructor chaining argument is strong – annakata Mar 25 '09 at 10:53
That is not correct if you choose to initialize the class with GetUninitializedObject. Whatever is in the ctor will not be touched but the field declarations will be run. – Wolf5 Jan 3 at 9:18

The semantics of C# differs slightly from Java here. In C# assignment in declaration is performed before calling the superclass constructor. In Java it is done immediately after which allows 'this' to be used (particularly useful for anonymous inner classes), and means that the semantics of the two forms really do match.

If you can, make the fields final.

share|improve this answer

What if I told you, it depends?

I in general initialize everything and do it in a consistent way. Yes it's overly explicit but it's also a little easier to maintain.

If we are worried about performance, well then I initialize only what has to be done and place it in the areas it gives the most bang for the buck.

In a real time system, I question if I even need the variable or constant at all.

And in C++ I often do next to no initialization in either place and move it into an Init() function. Why? Well, in C++ if you're initializing something that can throw an exception during object construction you open yourself to memory leaks.

share|improve this answer

Assuming the type in your example, definitely prefer to initialize fields in the constructor. The exceptional cases are:

  • Fields in static classes/methods
  • Fields typed as static/final/et al

I always think of the field listing at the top of a class as the table of contents (what is contained herein, not how it is used), and the constructor as the introduction. Methods of course are chapters.

share|improve this answer

I normally try the constructor to do nothing but getting the dependencies and initializing the related instance members with them. This will make you life easier if you want to unit test your classes.

If the value you are going to assign to an instance variable does not get influenced by any of the parameters you are going to pass to you constructor then assign it at declaration time.

share|improve this answer

There is a slight performance benefit to setting the value in the declaration. If you set it in the constructor it is actually being set twice (first to the default value, then reset in the ctor).

share|improve this answer
2  
In C#, fields are always set the default value first. The presence of an initializer makes no difference. – Jeffrey L Whitledge May 10 '10 at 18:20

Code Complete - Chapter 10.6 - Binding Time

It can be to your advantage to use the latest binding time possible. In general, the later you make the binding time, the more flexibility you build into your code. The next example shows binding at the earliest possible time, when the code is written:

Java Example of a Variable That's Bound at Code-Writing Time titleBar.color = 0xFF; // 0xFF is hex value for color blue

The value 0xFF is bound to the variable titleBar.color at the time the code is written because 0xFF is a literal value hard-coded into the program. Hard-coding like this is nearly always a bad idea because if this 0xFF changes, it can get out of synch with 0xFFs used elsewhere in the code that must be the same value as this one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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