Why is it bad practice to declare variables on one line?
e.g.
private String var1, var2, var3
instead of:
private String var1;
private String var2;
private String var3;
|
|
Why is it bad practice to declare variables on one line? e.g.
instead of:
|
|||
|
|
|
|
I think that there are various reasons, but they all boil down to that the first is just less readable and more prone to failure because a single line is doing more than one thing. And all that for no real gain, and don't you tell me you find two lines of saved space is a real gain. It's a similar thing to what happens when you have
Of course this example is much worse than yours. |
||
|
|
|
|
Relevance. Just because two variables are of type String does not mean they are closely related to each other. If the two (or more) variables are closely related by function, rather then variable type, then maybe they could be declared together. i.e. only if it makes sense for a reader of your program to see the two variables together should they actually be placed together |
||
|
|
|
|
Generally it is, for the version control and commenting reasons discussed by others, and I'd apply that in 95% of all cases. however there are circumstances where it does make sense, for example if I'm coding graphics and I want a couple of variables to represent texture coordinates (always referenced by convention as s and t) then the declaring them as int s, t; // texture coordinates IMHO enhances code readability both by shortening the code and by making it explicit that these two variables belong together (of course some would argue for using a single point class variable in this case). |
||
|
|
|
|
Why is that bad practice? I don't think it is, as long as your code is still readable.
|
||
|
|
|
|
It is bad practice mostly when you can and want to initialize variables on the deceleration. An example where this might not be so bad is:
|
||
|
|
|
|
What about the case such as:
Is that considered bad practice as well? I would consider that okay as it counters some of the points previously made:
So in an (albeit smelly code) example, is there reasons you wouldn't do that? |
||
|
|
|
|
In C/C++, you also have the problem that the * used to indicate a pointer type only applies to the directly following identifier. So a rather common mistake of inexperienced developers is to write
and expecting all three variables to be of type 'int pointer', whereas for the compiler reads this as
making only var1 a pointer. |
||
|
|
|
|
|
||
|
|
|
|
To be honest I am not against it. I think that its perfectly feasible to group similar variables on the same line e.g. float fMin, fMax; however I steer clear when the variables are unrelated e.g. int iBalance, iColor; |
||
|
|
|
|
In C++ :
i is of type int *, j is of type int. The distinction is too easily missed. Besides having them on one line each makes it easier to add some comments later |
||
|
|
|
|
Here's my reasons:
|
||
|
|
|
|
With separate lines, you have the opportunity to add a comment on each line describing the use of the variable (if it isn't clear from its name). |
||
|
|
|
Agree with edg, and also because it is more readable and easy for maintenance to have each variable on separate line. You immediately see the type, scope and other modifiers and when you change a modifier it applies only to the variable you want - that avoids errors. |
||
|
|
|
|
In my opinion, the main goal of having each variable on a separate line would be to facilitate the job of Version Control tools. If several variables are on the same line you risk having conflicts for unrelated modifications by different developers. |
||
|
|
|
|
Because in some languages, var2 and var3 in your example would not be strings, they would be variants (untyped). |
||
|
|