Is there a good reason (advantage) for programming this style
XmlDocument doc = null;
doc = xmlDocuments[3];
vs
XmlDocument doc = xmlDocuments[3];
I have seen it many times but to me it just seem overly verbose
|
Is there a good reason (advantage) for programming this style
vs
I have seen it many times but to me it just seem overly verbose
| ||||
|
feedback
|
|
No - it's generally considered best practice to declare a variable as late as you can, preferably setting it at the point of declaration. The only time when I don't do that is when I have to set a variable conditionally, or it's set in a more restrictive scope:
Reasons for declaring at the point of first use where possible:
| |||
|
feedback
|
|
I would use
Declare variables where they are used. | |||
|
feedback
|
|
They are different styles, and neither of them is objectivily better than the other. It's just a matter of taste. You can either declare the variable first and then assign a value to it:
Or you can do both in the same statement:
However, this form:
To assign a null reference to the variable and then immediately replace it with a different reference, is totally pointless. | |||||||||
feedback
|
|
The declaration and assignment should ideally be paired for code legibility. In fact ReSharper will pick up any exceptions to this and suggest that they be joined. | |||
|
feedback
|
|
As the others has pointed out the first style can be useful if you need to declare the variable outside the scope of a loop, if or something else. But in most cases I think this style is a remnant from the old days of Visual Basic 6 (and earlier) where you always had to declare a variable before using in. Old VB didn't support your second style and therefore the first style is still popular... | |||
feedback
|
|
If the variable 'doc' is assigned right after it is declared then no, I don't see any reason why you would want to do that. In any case, it certainly is not my style. | |||
|
feedback
|
|
I like to think of variables as 'shared' or 'not shared' in that some variables need to be used in multiple locations in the class or method, and some you only need to use once. For the former, I declare them all at the top of the relevant block, the latter I declare just before I use them. It all depends on where you need to use them. Case 1:
Case 2:
| |||
feedback
|
|
I agree mostly with Jon (Not to mention that usually I have to agree with him :-). you have options: 1.
2.
3.
4.
5.
6.
I hope you can see that option 1 makes good sense. It is best to keep declaration, definition and initialization as "together" as possible. Option 1 is example of declaration, definition and initialization done together in one line. You could compress it further:
Vocabulary (language independent):
I hope this helps. | |||
|
feedback
|
|
Guess I have been bad for years as typically I setup ALL variables first // Define object variables string connectionString = string.empty; bla.. bla.. // Get connectionString connectionString = Configuration.Bla["connectionString"] | |||
|
feedback
|
|
I prefer to use this one:
I just want assign and use 'doc' when it is required.. If I want use it right after assignment I go for
| |||||
feedback
|
|
I would go with
As doc may not be being used till later on in the method. It makes more sense to create doc just before it is used. Easier to read (less scrolling). | |||||||||||||||||||||
feedback
|
|
I'm always trying to declare and assign variables on the same row if possible, so in this case I would try to use the second option. Fewer lines of code, less declared variables to keep in mind when reading the code also. In the end I think it's all about the coding rules you and your team uses though. We've had coding rules which says to declare all local variables in the beginning of the method, so I've seen both programming styles. | ||||
|
feedback
|