Where do you declare variables? The top of a method or when you need them? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T11:04:00Z http://stackoverflow.com/feeds/question/318943 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them 23 Where do you declare variables? The top of a method or when you need them? Blankman 2008-11-25T21:31:07Z 2008-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#318951 20 Answer by Gamecat for Where do you declare variables? The top of a method or when you need them? Gamecat 2008-11-25T21:33:13Z 2008-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#318953 7 Answer by Grant Wagner for Where do you declare variables? The top of a method or when you need them? Grant Wagner 2008-11-25T21:33:22Z 2008-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#318956 25 Answer by cagcowboy for Where do you declare variables? The top of a method or when you need them? cagcowboy 2008-11-25T21:34:08Z 2008-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#318960 6 Answer by j0rd4n for Where do you declare variables? The top of a method or when you need them? j0rd4n 2008-11-25T21:35:16Z 2008-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#318962 82 Answer by James Curran for Where do you declare variables? The top of a method or when you need them? James Curran 2008-11-25T21:36:11Z 2008-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#318965 0 Answer by Chris Kloberdanz for Where do you declare variables? The top of a method or when you need them? Chris Kloberdanz 2008-11-25T21:36:28Z 2008-11-25T21:36:28Z <p>If I remember correctly the K&amp;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#318966 7 Answer by Rob Cooper for Where do you declare variables? The top of a method or when you need them? Rob Cooper 2008-11-25T21:36:39Z 2008-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#318967 1 Answer by Brian for Where do you declare variables? The top of a method or when you need them? Brian 2008-11-25T21:37:09Z 2008-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#318971 13 Answer by Roddy for Where do you declare variables? The top of a method or when you need them? Roddy 2008-11-25T21:37:50Z 2008-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 &lt; 100; ++i) { ... } </code></pre> <p>.. vs..</p> <pre><code>//GOOD for (int i=0; i &lt; 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 &lt; 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#318974 4 Answer by Kristopher Johnson for Where do you declare variables? The top of a method or when you need them? Kristopher Johnson 2008-11-25T21:38:51Z 2008-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#318976 2 Answer by bradheintz for Where do you declare variables? The top of a method or when you need them? bradheintz 2008-11-25T21:40:54Z 2008-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#318990 1 Answer by ojrac for Where do you declare variables? The top of a method or when you need them? ojrac 2008-11-25T21:45:50Z 2008-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#319089 6 Answer by jalf for Where do you declare variables? The top of a method or when you need them? jalf 2008-11-25T22:17:06Z 2008-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#319101 2 Answer by Perpetualcoder for Where do you declare variables? The top of a method or when you need them? Perpetualcoder 2008-11-25T22:19:59Z 2008-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#319129 0 Answer by Adam Kahtava for Where do you declare variables? The top of a method or when you need them? Adam Kahtava 2008-11-25T22:31:16Z 2008-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#319135 0 Answer by Atomiton for Where do you declare variables? The top of a method or when you need them? Atomiton 2008-11-25T22:36:58Z 2008-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#319148 0 Answer by Joachim Sauer for Where do you declare variables? The top of a method or when you need them? Joachim Sauer 2008-11-25T22:40:00Z 2008-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#319227 3 Answer by Brian Behm for Where do you declare variables? The top of a method or when you need them? Brian Behm 2008-11-25T23:12:06Z 2008-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#319323 0 Answer by McWafflestix for Where do you declare variables? The top of a method or when you need them? McWafflestix 2008-11-26T00:02:39Z 2008-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#319375 0 Answer by tomjedrz for Where do you declare variables? The top of a method or when you need them? tomjedrz 2008-11-26T00:37:31Z 2008-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#319791 0 Answer by rev for Where do you declare variables? The top of a method or when you need them? rev 2008-11-26T04:59:34Z 2008-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#320587 0 Answer by J.T. Hurley for Where do you declare variables? The top of a method or when you need them? J.T. Hurley 2008-11-26T12:47:14Z 2008-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#328804 0 Answer by Dennis Cheung for Where do you declare variables? The top of a method or when you need them? Dennis Cheung 2008-11-30T12:25:17Z 2008-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#331704 0 Answer by John MacIntyre for Where do you declare variables? The top of a method or when you need them? John MacIntyre 2008-12-01T18:17:49Z 2008-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#332418 0 Answer by Paul Nathan for Where do you declare variables? The top of a method or when you need them? Paul Nathan 2008-12-01T22:05:13Z 2008-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>