Where do you declare variables? The top of a method or when you need them? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T11:04:00Zhttp://stackoverflow.com/feeds/question/318943http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them23Where do you declare variables? The top of a method or when you need them?Blankman2008-11-25T21:31:07Z2008-12-01T22:05:13Z
<p>Hi,</p>
<p>I am in sort of a dilemma (in a geekish way of course).</p>
<p>I <b>love</b> to declare variables at the beginning of my methods, and usually order them in some logical way. </p>
<p>The problem is, when the list gets long, it sort of gets out of hand.</p>
<p>Should I just declare them <b>when I need them</b>?</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318951#31895120Answer by Gamecat for Where do you declare variables? The top of a method or when you need them?Gamecat2008-11-25T21:33:13Z2008-11-25T21:33:13Z<p>If the list gets long, it is a sign that the method does too much work so you need to split it in two.</p>
<p>Same story with classes and fields.</p>
<p>But I like to put them at the top. Preferably with a piece of comment on their purpose.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318953#3189537Answer by Grant Wagner for Where do you declare variables? The top of a method or when you need them?Grant Wagner2008-11-25T21:33:22Z2008-11-25T21:33:22Z<p>Yes, declare them when you need them.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318956#31895625Answer by cagcowboy for Where do you declare variables? The top of a method or when you need them?cagcowboy2008-11-25T21:34:08Z2008-11-25T21:34:08Z<p>My two cents:</p>
<ul>
<li>Declare variables that are used through-out the function at the top.</li>
<li>Declare variables that are used in only a small part of the function at the point where they are needed.</li>
</ul>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318960#3189606Answer by j0rd4n for Where do you declare variables? The top of a method or when you need them?j0rd4n2008-11-25T21:35:16Z2008-11-25T21:35:16Z<p>Declare variables close to where you need them. If your function is getting too long, you probably ought to see if it needs to be refactored into smaller, more specific, functions. Remember, the key is coherent readability of your code.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318962#31896282Answer by James Curran for Where do you declare variables? The top of a method or when you need them?James Curran2008-11-25T21:36:11Z2008-11-25T21:36:11Z<p>Variables should be declared as close to where they are used as possible.</p>
<ul>
<li>It makes RAII (<a href="http://en.wikipedia.org/wiki/RAII" rel="nofollow">Resource Acquisition Is Initialization</a>) easier.</li>
<li>It keeps the scope of the variable tight. This lets the optimizer work better.</li>
</ul>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318965#3189650Answer by Chris Kloberdanz for Where do you declare variables? The top of a method or when you need them?Chris Kloberdanz2008-11-25T21:36:28Z2008-11-25T21:36:28Z<p>If I remember correctly the K&R book says to declare a variable close to where you'll be using it. I have done both in practice, though.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318966#3189667Answer by Rob Cooper for Where do you declare variables? The top of a method or when you need them?Rob Cooper2008-11-25T21:36:39Z2008-11-25T21:36:39Z<p>I would say that if your methods are so long that you actually need to differentiate between the two, you may want to consider refactoring.</p>
<p>I personally like to keep them close to where they are used, so their purpose is fresh in my head. However, I think this comes down to programmer preference.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318967#3189671Answer by Brian for Where do you declare variables? The top of a method or when you need them?Brian2008-11-25T21:37:09Z2008-11-25T21:37:09Z<p>You should in general try to keep them limited to the scope in which they are needed. This fits nicely with the concept of RAII (another answer provided gives a good link for details), and keeps you from having to waste time searching for the declaration of the variable in question.</p>
<p>However, this does not limit you to declaring them at the top or only right where they are used. I view that as an issue of preference for either you or your coding team. With either approach, consistency is key.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318971#31897113Answer by Roddy for Where do you declare variables? The top of a method or when you need them?Roddy2008-11-25T21:37:50Z2008-11-26T17:57:10Z<p>Your local variables should have absolutely no more visibility than required - so declare them when you need them, and let them go out of scope when you're done with them.</p>
<p>The classic case of this is C++ loop variables:</p>
<pre><code>//BAD - old, C-style:
int i;
for (i=0; i < 100; ++i)
{
...
}
</code></pre>
<p>.. vs..</p>
<pre><code>//GOOD
for (int i=0; i < 100; ++i)
{
...
}
</code></pre>
<p>One benefit of the reduced scope which isn't immediately obvious is that the following code now fails to compile:</p>
<pre><code>for (int i=0; i < 100; i++);
{
printf("loop %d\n", i);
}
</code></pre>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318974#3189744Answer by Kristopher Johnson for Where do you declare variables? The top of a method or when you need them?Kristopher Johnson2008-11-25T21:38:51Z2008-12-01T18:01:14Z<p>Never declare a variable until the point where you initialize it. This reduces the opportunities to have bugs due to uninitialized variables.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318976#3189762Answer by bradheintz for Where do you declare variables? The top of a method or when you need them?bradheintz2008-11-25T21:40:54Z2008-11-25T21:40:54Z<p>The orthodoxy on coding clarity is that you should declare near first use. If you're following the other orthodoxy about keeping your function/methods short, though, then any declaration will be near its first use. Problem solved ;-)</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/318990#3189901Answer by ojrac for Where do you declare variables? The top of a method or when you need them?ojrac2008-11-25T21:45:50Z2008-11-25T21:45:50Z<p>I get the sense that declaring variables "at the top" is only a common "style" decision because C90 required it.</p>
<p>Now that you're free to choose, you should probably wait until you need it. Your code should be more readable that way.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/319089#3190896Answer by jalf for Where do you declare variables? The top of a method or when you need them?jalf2008-11-25T22:17:06Z2008-11-26T04:57:08Z<p>Your variables should have the smallest possible scope allowed by the language. (C used to require all variables to be declared at the beginning of a <del>function</del> block. No sane language requires this, because it is a terrible idea.)</p>
<p>A larger than necessary scope means:</p>
<ul>
<li>The code gets harder to read, because I can't see the variable declarations anywhere near where they're actually <em>used</em>, and vice versa.</li>
<li>The code gets harder to optimize for the compiler, because every variable could potentially be used <em>anywhere</em> in the function. If it is declared immediately before use, the compiler can at least easily see that it isn't used before then. And if it is declared in a nested scope in the function (For example inside a loop), the compiler further knows that the variable is not used after the loop either.</li>
<li>You get a greater chance of name collisions. (A canonical example might be the 'i' loop iteration variable. If you have two for-loops in your function, they can't both use an 'i' variable, unless either</li>
<li>They reuse the same variable (which confuses both the reader and the compiler)</li>
<li>One of them use a differently named variable (now you have to declare both 'i' and 'j' at the top of the function.</li>
</ul>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/319101#3191012Answer by Perpetualcoder for Where do you declare variables? The top of a method or when you need them?Perpetualcoder2008-11-25T22:19:59Z2008-11-25T22:19:59Z<p>I suggest declare a variable based on the usage scope. If used throughout the method..top is good..if something like a temporary holder..closest to its usage. In this way you will always declare closest to the usage...don't forget to indent and space out your code for readability.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/319129#3191290Answer by Adam Kahtava for Where do you declare variables? The top of a method or when you need them?Adam Kahtava2008-11-25T22:31:16Z2008-11-25T22:31:16Z<p>Depends on what language you're using. </p>
<p>Languages like JavaScript do not have block scope. With JavaScript you probably want to declare all your variables used in a function at the start of the function body.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/319135#3191350Answer by Atomiton for Where do you declare variables? The top of a method or when you need them?Atomiton2008-11-25T22:36:58Z2008-11-25T22:36:58Z<p>Just to add to what has already been said. As a general rule my Methods fit on about one page. If it's getting longer than that, I refactor. That being said, good advice on this page.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/319148#3191480Answer by Joachim Sauer for Where do you declare variables? The top of a method or when you need them?Joachim Sauer2008-11-25T22:40:00Z2008-11-25T22:40:00Z<p>I usually declare them where they are needed.</p>
<p>But there's a way where you get the best of both worlds: keep your methods as short as they should be (no longer than 10-15 lines). This way the difference won't be too large.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/319227#3192273Answer by Brian Behm for Where do you declare variables? The top of a method or when you need them?Brian Behm2008-11-25T23:12:06Z2008-11-25T23:12:06Z<p>Right where you need them. That way they may never need to be instantiated if the code branches a different direction and never needs the variable.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/319323#3193230Answer by McWafflestix for Where do you declare variables? The top of a method or when you need them?McWafflestix2008-11-26T00:02:39Z2008-11-26T00:02:39Z<p>I tend to believe that you should allocate variables at the beginning of whatever uses them. If you find yourself declaring variables significantly distant from the beginning of the method where you're using them (unless they're class variables, of course), then I take that as a sign that my method's doing far too much! Really, generally, I try to keep my methods very compact; of course you're going to have variables that get declared in nested scopes, but in general, if I find myself declaring variables far down the method body, I realize that my method is just too damn long.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/319375#3193750Answer by tomjedrz for Where do you declare variables? The top of a method or when you need them?tomjedrz2008-11-26T00:37:31Z2008-11-26T00:37:31Z<p>Back in the good-old-days, all variables were declared at the top because the compiler/system needed to account for all of them before doing anything else. That is obviously no longer the case.</p>
<p>My preferences is to ...<br />
a- Declare each variable at the top of the section of code where it is used. If there are too many variable, that is a clue that the section of code can be broker into smaller pieces. I do not like to see declaration statements among the logic; I find they clutter the code and make it harder to understand.</p>
<p>b- Use descriptive names along with a type indicator if it isn't clear, so that it is clear what the variable is and what it is doing. In particular, do this for work variables and variables used for converting things.</p>
<p>Have fun!</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/319791#3197910Answer by rev for Where do you declare variables? The top of a method or when you need them?rev2008-11-26T04:59:34Z2008-11-26T04:59:34Z<p>if it is C code, you have to declare them at the top.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/320587#3205870Answer by J.T. Hurley for Where do you declare variables? The top of a method or when you need them?J.T. Hurley2008-11-26T12:47:14Z2008-11-26T12:47:14Z<p>My personal preference is to place any globals in a block at the top of the code, and place locals as close as possible to their own scope.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/328804#3288040Answer by Dennis Cheung for Where do you declare variables? The top of a method or when you need them?Dennis Cheung2008-11-30T12:25:17Z2008-11-30T12:25:17Z<p>Declare variable in the beginning of the block.</p>
<p>If it used in only a small part of the function, create a block with { } and declare the variable in the beginning of block. Then I can trace the scope of the variable easily, and GC friendly.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/331704#3317040Answer by John MacIntyre for Where do you declare variables? The top of a method or when you need them?John MacIntyre2008-12-01T18:17:49Z2008-12-01T18:17:49Z<p>I've always been a top-of-the-block kind of guy, but lately, I'm moving to throughout my code. I think it's really an irrelevant personal preference (sincerity intended).</p>
<p>As for all the comments about your long list of variable declarations is an indication you need to refactor your code. This may be the case, but not necessarilly. When your current function design does make sense, you may find that many of those variables might fit nicely into a struct or thier own class. This will help clean up your code a bit.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/332418#3324180Answer by Paul Nathan for Where do you declare variables? The top of a method or when you need them?Paul Nathan2008-12-01T22:05:13Z2008-12-01T22:05:13Z<p>I have all my variables declared at the top. I've read through enough code where variables are declared mid-code that I don't want to play "hunt for the declaration" again. While I'm actively working on a function, variables are scattered whereever they are used; once the function works, I take a pass and bring the variables up to the top and do some commenting - "others-ready code", basically.</p>