vote up 20 vote down star
3

Code styling question here.

I looked at this question which asks if the .NET CLR will really always initialize field values. (The answer is yes) But it strikes me that I'm not clear that it's a always a good idea to have it do this. My thinking is that if I see a declaration like this:

int myBlorgleCount = 0;

I have a pretty good idea that the programmer expects the count to start at zero, and is okay with that, at least for the immediate future. On the other hand, if I just see

int myBlorgleCount;

I have no real immediate idea if 0 is a legal or reasonable value. And if the programmer just starts reading and modifying it, I don't know whether the programmer meant to start using it before they set a value to it, or if they were expecting it to be zero, etc.

On the other hand, some fairly smart people, and the Visual Studio code cleanup utilty tell me to remove these redundant declarations. What is the general consensus on this? (Is there a consensus?)

I marked this as language agnostic, but if there is an odd case out there where it's specifically a good idea to go against the grain for a particular language, that's probably worth pointing out.

EDIT: While I did put that this question was language agnostic, it obviously doesn't apply to languages like C, where no value initialization is done.

EDIT: I appreciate John's answer, but it is exactly what I'm not looking for. I understand that .NET (or Java or whatever) will do the job and initialize the values consistently and correctly. What I'm saying is that if I see code that is modifying a value that hasn't been previously explicitly set in code, I, as a code maintainer, don't know if the original coder meant it to be the default value, or just forgot to set the value, or was expecting it to be set somewhere else, etc.

flag

15 Answers

vote up 14 vote down check

Think long term maintenance.

  • Keep the code as explicit as possible.
  • Don't rely on language specific ways to initialize if you don't have to. Maybe a newer version of the language will work differently?
  • Future programmers will thank you.
  • Management will thank you.
  • Why obfuscate things even the slightest?

Update: Future maintainers may come from a different background. It really isn't about what is "right" it is more what will be easiest in the long run.

link|flag
1  
For the future maintainers: first day they ask, tell them what world they're in. End of problem. And we're not talking about a language feature. It's a platform feature. It's true for evey .NET language, and always will be true. Think what would happen if this behavior changed! – John Saunders Mar 11 at 20:45
That was not really the point was it? Not all software is .NET? Or am I living in a parallel universe? – Subtwo Mar 11 at 20:47
1  
John: The maintainer may understand the issue perfectly, but how do they know that the coder meant to get the default when they didn't initialize the value? Maybe it was supposed to be the default, but maybe not. After all, if everything was perfect with the code, they wouldn't be maintaining it. – Beska Mar 11 at 20:57
@Subtwo: although marked as language-agnostic, the question has been about .NET. Clearly, if we're talking platform-agnostic, then initialization, in general, is necessary. – John Saunders Mar 12 at 3:36
@John: You're quite right. Sorry if I came on a bit harsh. Although I think Beska has a point about the intention of original programmer. – Subtwo Mar 12 at 7:09
show 3 more comments
vote up 8 vote down

You are always safe in assuming the platform works the way the platform works. The .NET platform initializes all fields to default values. If you see a field that is not initialized by the code, it means the field is initialized by the CLR, not that it is uninitialized.

This concern is valid for platforms which do not guarantee initialization, but not here. In .NET, is more often indicates ignorance from the developer, thinking initialization is necessary.


Another unnecessary hangover from the past is the following:

string foo = null;
foo = MethodCall();

I've seen that from people who should know better.

link|flag
I'll grant that the second is just silly. But the question isn't whether .NET will always do the correct thing. I assume it will. But if someone starts using a value before they've set it, how do I know if it's intended, or a possible bug? If they just declare the initial value, it's obvious. – Beska Mar 11 at 20:11
In C# (and probably VB.NET) the compiler will throw an error if you try to read a variable that has never been set in code. This alone prevents a situation like you describe, since the variable must always be set somewhere prior to reading from it, even if not in the declaration. – Chris Mar 11 at 20:38
You're missing the point that the value is always set, under all circumstances. There's no point in imagining that something different might happen. It can never be a bug unless you're dealing with a really stupid developer who expects "int i;" to init to 1. Fire him, problem solved. – John Saunders Mar 11 at 20:38
That is, for reference types. Value types go unchecked, I believe, but again, as others have mentioned, the CLR by default initializes value types to their default values - the initialization is redundant and IMO, doesn't make things any clearer. – Chris Mar 11 at 20:40
1  
(cont) In the case of explicit declaration, there are no assumptions. I know exactly what the previous coder wanted the value to be. – devinb Mar 16 at 18:39
show 4 more comments
vote up 1 vote down

I think a lot of that comes down to past experiences.

In older and unamanged languages, the expectation is that the value is unknown. This expectation is retained by programmers coming from these languages.

Almost all modern or managed languages have defined values for recently created variables, whether that's from class constructors or language features.

For now, I think it's perfectly fine to initialize a value; what was once implicit becomes explicit. In the long run, say, in the next 10 to 20 years, people may start learning that a default value is possible, expected, and known - especially if they stay consistent across languages (eg, empty string for strings, 0 for numerics).

link|flag
Except in some languages, like Java, an empty string, "", is actually a String. You should instead initialize a String variable to null so you don't create a String object unnecessarily. – David Mar 11 at 20:06
Yup, exactly my point: Right now, defaults are all but certain across languages. :) – Robert P Mar 11 at 20:52
vote up 1 vote down

I agree with you; it may be verbose, but I like to see:

int myBlorgleCount = 0;

Now, I always initial strings though:

string myString = string.Empty;

(I just hate null strings.)

link|flag
vote up 1 vote down

I think that it makes sense to initialize the values if it clarifies the developer's intent.

In C#, there's no overhead as the values are all initialized anyway. In C/C++, uninitialized values will contain garbage/unknown values (whatever was in the memory location), so initialization was more important.

link|flag
FxCop has a rule under the Performance section that specifically calls out unnecessary initialization. There must be some waste if they tell you not to do it. Not that it matters in most real-world applications... – Pedro Mar 11 at 20:10
Exactly...my code examination tool has a similar rule. But I'm not clear on exactly why...especially since I've been told (but have not verified) that it usually does not actually make any waste...that the redundant initialization is optimized out. – Beska Mar 11 at 20:22
vote up 1 vote down

I think it should be done if it really helps to make the code more understandable.

But I think this is a general problem with all language features. My opinion on that is: If it is an official feature of the language, you can use it. (Of course there are some anti-features which should be used with caution or avoided at all, like a missing option explicit in Visual Basic or diamond inheritance in C++)

There was I time when I was very paranoid and added all kinds of unnecessary initializations, explicit casts, über-paranoid try-finally blocks, ... I once even thought about ignoring auto-boxing and replacing all occurrences with explicit type conversions, just "to be on the safe side".

The problem was: There was no end. You could avoid almost all language features, because you did not want to trust them.

Remember: It's only magic until you understand it :)

link|flag
Sorry, but I take issue with "If it is an official feature of the language, you should use it." Diamond inheritance in C++ makes a wonderful counterpoint, just for starters. – Not Sure Mar 11 at 20:18
Yes, I understand what you mean, but I think that is over-interpreting the sentence. Of course it is not always good to do everything which is possible. Anyway, I changed it to "can". – DR Mar 11 at 21:06
vote up 1 vote down

In my experience I've found that explicitly initializing local variables (in .NET) adds more clutter than clarity.

Class-wide variables, on the other hand should always be initialized. In the past we defined system-wide custom "null" values for common variable types. This way we could always know what was uninitialized by error and what was initialized on purpose.

link|flag
vote up 0 vote down

You Should do it, there is no need to, but it is better if you do so, because you never know if the language you are using initialize the values. By doing it yourself, you ensure your values are both initialized and with standard predefined values set. There is nothing wrong on doing it except perhaps a bit of 'time wasted'. I would recommend it strongly. While the commend by John is quite informative, on general use it is better to go the safe path.

link|flag
Since he was talking about .NET, leaving off the redundant initializations is the safe path, as the fields are always initialized. If he is not using .NET, then the answer depends on the platform. In the case of unmanaged C/C++, it's necessary. – John Saunders Mar 11 at 20:11
vote up 0 vote down

Hi, I usually do it for strings and in some cases collections where I don't want nulls floating around. The general consensus where I work is "Not to do it explicitly for value types."

link|flag
vote up 0 vote down

I wouldn't do it. C# initializes an int to zero anyways, so the two lines are functionally equivalent. One is just longer and redundant, although more descriptive to a programmer who doesn't know C#.

link|flag
vote up 0 vote down

This is tagged as language-agnostic but most of the answers are regarding C#.

In C and C++, the best practice is to always initialize your values. There are some cases where this will be done for you such as static globals, but there shouldn't be a performance hit of any kind for redundantly initializing these values with most compilers.

link|flag
He's asking about .net languages where the initialisation is guaranteed. – Ray Mar 11 at 20:23
Well, not .NET necessarily, but any language where some kind of default initialization is guaranteed. The question is: despite this guarantee, should the value be specifically initialized anyway? – Beska Aug 4 at 19:35
vote up 0 vote down

I wouldn't initialise them. If you keep the declaration as close as possible to the first use, then there shouldn't be any confusion.

link|flag
vote up 0 vote down

In the case where I cannot immediately set it to something useful

int myValue = SomeMethod();

I will set it to 0. That is more to avoid having to think about what the value would be otherwise. For me, the fact that integers are always set to 0 is not on the tip of my fingers, so when I see

int myValue;

it will take me a second to pull up that fact and remember what it will be set to, disrupting my thought process. For someone who has that knowledge readily available, they will encounter

int myValue = 0;

and wonder why the hell is that person setting it to zero, when the compiler would just do it for them. This thought would interrupt their thought process.

So do which ever makes the most sense for both you and the team you are working in. If the common practice is to set it, then set it, otherwise don't.

link|flag
vote up 0 vote down

Another thing to remember is, if you are gonna use automatic properties, you have to rely on implicit values, like:

public int Count { get; set; }
link|flag

Your Answer

Get an OpenID
or

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