vote up 12 vote down star

When assigning a defualt default-value to a field (here false to a bool), fxcops says :

Resolution   : "'Bar.Bar()' initializes field 'Bar.foo' 
               of type 'bool' to false. Remove this initialization 
               because it will be done automatically by the runtime."

Now, I know that code as int a = 0 or bool ok = false is introducing some redundancy, but to me it seems a very, very good code-practice, one that my teachers insisted on righteously in my opinion.

Not only is the performance penalty very little, more important : relying on the default is relying on the knowledge of each programmer ever to use a piece of code, on every datatype that comes with a default. (DateTime ?)

Seriously, I think this is very strange : the very program that should protect you from making all too obvious mistakes, is suggesting here to make one, only for some increased performance? (we're talking about INITIALIZATION CODE here, only use one time!! Programmers who care that much, can ommit of course the initialization, (and should probably use C or assembler :-))

Is FXCop making an obvious mistake here, or is there more to it?

2 Updates :

  1. This is not just my opinion, but what I have been teached at university (belgium), not that I liketo use an argumentum ad verecundiam but just to show that it isn't just my opinion, and concerning that :

  2. My apologies, i just found this one : http://stackoverflow.com/questions/636102/should-i-always-ever-never-initialize-object-fields-to-default-values

flag

I don't think there's even a performance benefit from ommiting the initialization. – Martinho Fernandes Apr 8 at 17:25
I agree with Martinho, but I like your question! – Jay Riggs Apr 8 at 17:27
@Martinho Fernandes: There is a performance benefit to omitting this - see my answer and the article referenced. – Reed Copsey Apr 8 at 17:31
@Reed: Thanks for disproving me. I don't usually initialize to the default for the "code with a purpose" reason you state in your answer, but it's always good to know there's a performance benefit. – Martinho Fernandes Apr 8 at 17:34
i'm sure the compiler removes initializations that are not needed. – Ian Boyd Jul 6 at 15:19

5 Answers

vote up 6 vote down check

There can be significant performance benefits from this, in some cases. For details, see this CodeProject article.

The main issue is that it is unnecessary in C#. In C++, things are different, so many professors teach that you should always initialize. The way the objects are initialized has changed in .NET.

In .NET, objects are always initialized when constructed. If you add an initializer, it's possible (typical) that you cause a double initialization of your variables. This happens whether you initialize them in the constructor or inline.

In addition, since initialization is unnecessary in .NET (it always happens, even if you don't explicitly say to initialize to the default), adding an initializer suggests, from a readability standpoint, that you are trying to add code that has a function. Every piece of code should have a purpose, or be removed if unnecessary. The "extra" code, even if it was harmless, suggests that it is there for a reason, which reduces maintainability.

link|flag
unnecessary for who or what? You of course code for persons to, for a machine comments are unnecessary too, this doesnot mean they are unnecessary perse – Peter Apr 8 at 17:29
You can put it in as a comment, just as easily as a statement, and not create the same performance impacts. It's like having code that is unreachable - it may provide something to you, but I'd rather have it as a comment than leave unreachable code in my methods. – Reed Copsey Apr 8 at 17:30
The difference with a comment, is when I say int i = 0; I want i to be zero, the statement is logical. Even when compiled with a future compiler that has other defaults (unlikely for int ofcourse) – Peter Apr 8 at 17:43
And a question : if you want a date to be initialized on 1/1/1, do you omit this value because it's unnecessary, and do you seriousliy think this would be a good idea? – Peter Apr 8 at 17:48
@Peter: You're guaranteed that an int will always be defaulted to 0 by the CLR spec - this isn't a compiler issue, but rather a runtime/platform issue. If you want a date to be initialized to a non-default value, by all means initialize it, but only if you're using a non-default value. – Reed Copsey Apr 8 at 17:51
show 7 more comments
vote up 3 vote down

FX Cop sees it as adding unnecessary code and unnecessary code is bad. I agree with you, I like to see what it's set to, I think it makes it easier to read.

A similar problem we encounter is, for documentation reasons we may create an empty constructor like this

/// <summary>
/// a test class
/// </summary>
/// <remarks>Documented on 4/8/2009  by richard</remarks>
public class TestClass
{
    /// <summary>
    /// Initializes a new instance of the <see cref="TestClass"/> class.
    /// </summary>
    /// <remarks>Documented on 4/8/2009  by Bob</remarks>
    public TestClass()
    {
        //empty constructor
    }        
}

The compiler creates this constructor automatically, so FX cop complains but our sandcastle documentation rules require all public methods to be documented, so we just told fx cop not to complain about it.

link|flag
unnecessary code is bad of course, but this code can become necessary in the unlikely event a default will be changed in the future and this code is recompiled. – Peter Apr 8 at 17:44
@Peter: Defaults for value types are guaranteed to always initialize to zeros. It's part of the CLR specification itself. There is no way for a value type default to change. Reference types are the same - they're guaranteed, by spec, to default to null. – Reed Copsey Apr 8 at 18:02
@Bob The Janitor, doing things that don't feel right just to satisfy a tool usually ends poorly! ;) – Michael Meadows Apr 8 at 18:16
it's not doing something to satisfy a tool, I deliberately set the rule that enforces it. If you look at the XML doc the Remarks state when something was Documents, this should be the same time it was created, this then places when something was created into our documentation. – Bob The Janitor Apr 8 at 19:06
vote up 2 vote down

It's relies not on every programmer knowing some locally defined "corporate standard" which might change between at any time, but on something formally defined in the Standard. You might as well say "don't using x++ because that relies on the knowledge of every programmer.

link|flag
completely different issues imo, (between () has DateTime a default, and what is it's value? What does x-- do? I think the answer to the latter 100% of the programmers know, the answer to the first - if we're lucky - 50%) – Peter Apr 8 at 17:32
First of all, it equals "default(DateTime)". Second, under what circumstances would you care what the actual value is? – James Curran Apr 9 at 3:54
vote up 2 vote down

FxCop has to provide rules for everyone, so if this rule doesn't appeal to you, just exclude it.

Now, I would suggest that if you want to explicitly declare a default value, use a constant (or static readonly variable) to do it. It will be even clearer than initializing with a value, and FXCop won't complain.

private const int DEFAULT_AGE = 0;

private int age = 0; // FXCop complains
private int age = DEFAULT_AGE; // FXCop is happy

private static readonly DateTime DEFAULT_BIRTH_DATE = default(DateTime);

private DateTime birthDate = default(DateTime); // FXCop doesn't complain, but it isn't as readable as below
private DateTime birthDate = DEFAULT_BIRTH_DATE; // Everyone's happy
link|flag
tx (was also suggested in a former comment) – Peter Apr 8 at 18:31
vote up 1 vote down

You have to remember that FxCop rules are only guidelines, they are not unbreakable. It even says so on the page for the description of the rule you mentioned (http://msdn.microsoft.com/en-us/library/ms182274(VS.80).aspx, emphasis mine):

When to Exclude Warnings:

Exclude a warning from this rule if the constructor calls another constructor in the same or base class that initializes the field to a non-default value. It is also safe to exclude a warning from this rule, or disable the rule entirely, if performance and code maintenance are not priorities.

Now, the rule isn't entirely incorrect, but like it says, this is not a priority for you, so just disable the rule.

link|flag

Your Answer

Get an OpenID
or

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