Should Local Variable Initialisation Be Mandatory? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T07:00:17Z http://stackoverflow.com/feeds/question/139686 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory 8 Should Local Variable Initialisation Be Mandatory? schmick 2008-09-26T14:02:19Z 2008-11-12T05:37:06Z <p>The maintenance problems that uninitialised locals cause (particularly pointers) will be obvious to anyone who has done a bit of c/c++ maintenance or enhancement, but I still see them and occasionally hear performance implications given as their justification.</p> <p>It's easy to demonstrate in c that redundant initialisation is optimised out:</p> <pre><code>$ less test.c #include &lt;stdio.h&gt; main() { #ifdef INIT_LOC int a = 33; int b; memset(&amp;b,66,sizeof(b)); #else int a; int b; #endif a = 0; b = 0; printf ("a = %i, b = %i\n", a, b); } $ gcc --version gcc (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125) </code></pre> <p>[Not Optimised:]</p> <pre><code>$ gcc test.c -S -o no_init.s; gcc test.c -S -D INIT_LOC=1 -o init.s; diff no_in it.s init.s 22a23,28 &gt; movl $33, -4(%ebp) &gt; movl $4, 8(%esp) &gt; movl $66, 4(%esp) &gt; leal -8(%ebp), %eax &gt; movl %eax, (%esp) &gt; call _memset 33a40 &gt; .def _memset; .scl 3; .type 32; .endef </code></pre> <p>[Optimised:]</p> <pre><code>$ gcc test.c -O -S -o no_init.s; gcc test.c -O -S -D INIT_LOC=1 -o init.s; diff no_init.s init.s $ </code></pre> <p>So WRT performance under what circumstances is mandatory variable initialisation NOT a good idea?</p> <p>IF applicable, no need to restrict answers to c/c++ but please be clear about the language/environment (and reproducible evidence much preferred over speculation!)</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139731#139731 2 Answer by xtofl for Should Local Variable Initialisation Be Mandatory? xtofl 2008-09-26T14:07:59Z 2008-09-26T14:07:59Z <p>Sometimes you need a variable as a placeholder (e.g. using the <code>ftime</code> functions), so it doesn't make sense to initialize them before calling the initialization function.</p> <p>However it wouldn't be bad, in my opinion, to annotate the fact that you are aware of the pitfalls, something in the way of</p> <pre><code>uninitialized time_t t; time( &amp;t ); </code></pre> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139738#139738 4 Answer by j0rd4n for Should Local Variable Initialisation Be Mandatory? j0rd4n 2008-09-26T14:09:22Z 2008-09-26T14:09:22Z <p>I'm not sure if it is necessary to "make them mandatory", but I personally think it is always better to initialize variables. If the purpose of the application is to be as tight as possible then C/C++ is open for that purpose. However, I think many of us have been burned a time or two by not initializing a variable and assuming it contains a valid value (e.g. pointer) when it really doesn't. A pointer with an address of zero is much easier to check for than if it has random garbage from the last memory contents at that particular location. I think in most cases, it is no longer a matter of performance but a matter of clarity and safety.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139744#139744 9 Answer by hazzen for Should Local Variable Initialisation Be Mandatory? hazzen 2008-09-26T14:10:01Z 2008-09-26T15:16:40Z <p>Short answer: declare the variable as close to first use as possible and initialize to "zero" if you still need to.</p> <p>Long answer: If you declare a variable at the start of a function, and don't use it until later, you should reconsider your placement of the variable to as local a scope as possible. You can then usually assign to it the needed value right away.</p> <p>If you must declare it uninitialized because it gets assigned in a conditional, or passed by reference and assigned to, initializing it to a null-equivalent value is a good idea. The compiler can sometimes save you if you compile under -Wall, as it will warn if you read from a variable before initializing it. However, it fails to warn you if you pass it to a function.</p> <p>If you play it safe and set it to a null-equivalent, you have done no harm if the function you pass it to overwrites it. If, however, the function you pass it to uses the value, you can pretty much be guaranteed failing an assert (if you have one), or at least segfaulting the second you use a null object. Random initialization can do all sorts of bad things, including "work".</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139762#139762 0 Answer by gbjbaanb for Should Local Variable Initialisation Be Mandatory? gbjbaanb 2008-09-26T14:12:00Z 2008-09-26T14:12:00Z <p>Performance? Nowadays? Maybe back when CPUs ran at 10mhz it did make sense, but today its hardly a problem. Always initialise them.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139766#139766 0 Answer by Nils Pipenbrinck for Should Local Variable Initialisation Be Mandatory? Nils Pipenbrinck 2008-09-26T14:12:33Z 2008-09-26T14:12:33Z <p>As you've showed with respect to performacne it does not make a difference. The compiler will (in optimized builds) detect if a local variable is written without beeing read from and remove the code unless it has other side-effects.</p> <p>That said: If you initialize stuff with simple statements just to be sure it's initialized it's fine to do so.. I personally don't do it, for a single reason:</p> <p>It tricks the guys who may later maintain your code into thinking that the initialization is required. That little foo = 0; will increase the code-complexity. Other than that it's just a matter of taste.</p> <p>If you unnessesary initialize variables via complex statements it may have a side-effect.</p> <p>For example:</p> <pre><code> float x = sqrt(0); </code></pre> <p>May be optimized by your compiler if you are lucky and work with a clever compiler. With a not so clever compiler it may as well result in a costly and unnessesary function-call because sqrt can - as a side-effect - set the errno variable.</p> <p>If you call functions that you have defined yourself my best bet is, that the compiler always assumes that they may have side-effects and don't optimize them out. That may be different if the function happen to be in the same translation unit or you have whole program optimization turned on.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139806#139806 1 Answer by J.J. for Should Local Variable Initialisation Be Mandatory? J.J. 2008-09-26T14:18:22Z 2008-09-26T15:16:22Z <p>In C/C++ I totally agree with you.</p> <p>In Perl when I create a variable it is automatically put to a default value.</p> <pre><code>my ($val1, $val2, $val3, $val4); print $val1, "\n"; print $val1 + 1, "\n"; print $val2 + 2, "\n"; print $val3 = $val3 . 'Hello, SO!', "\n"; print ++$val4 +4, "\n"; </code></pre> <p>They are all set to undef initially. Undef is a false value, and a place holder. Due to the dynamic typing if I add a number to it, it assumes that my variable is a number and replaces undef with the eqivilent false value 0. If i do string operations a false version of a string is an empty string, and that gets automatically substituted.</p> <pre><code>[jeremy@localhost Code]$ ./undef.pl 1 2 Hello, SO! 5 </code></pre> <p>So for Perl at least declare early and don't worry. Especially as most programs have many variables. You use less lines and it looks cleaner without explicit initializing.</p> <pre><code> my($x, $y, $z); </code></pre> <p>:-)</p> <pre><code> my $x = 0; my $y = 0; my $z = 0; </code></pre> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139818#139818 3 Answer by Benoit for Should Local Variable Initialisation Be Mandatory? Benoit 2008-09-26T14:19:39Z 2008-09-28T15:14:18Z <p>This is a great example of <strong>Premature optimization is the root of all evil</strong></p> <p>The full quote is:</p> <blockquote> <p>There is no doubt that the grail of efficiency leads to abuse. Programmers waste enormous amounts of time thinking about, or worrying about, the speed of noncritical parts of their programs, and these attempts at efficiency actually have a <em>strong negative impact when debugging and maintenance are considered</em>. <strong>We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil.</strong> Yet we should not pass up our opportunities in that critical 3%. A good programmer will not be lulled into complacency by such reasoning, he will be wise to look carefully at the critical code; but only after that code has been identified.</p> </blockquote> <p>This came from <a href="http://shreevatsa.wordpress.com/2008/05/16/premature-optimization-is-the-root-of-all-evil/" rel="nofollow">Donald Knuth</a>. who are you going to believe...your colleagues or Knuth?<br /> I know where my money is...</p> <p>To get back to the original question: "Should we MANDATE initialization?"<br /> I would phrase it as so:</p> <blockquote> <p>Variables <strong>should</strong> be initialize, except in situation where it can be demonstrated there is a <em>significant</em> performance gain to be realized by not initializing. Come armed with hard numbers...</p> </blockquote> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139858#139858 0 Answer by oliver for Should Local Variable Initialisation Be Mandatory? oliver 2008-09-26T14:25:36Z 2008-09-26T14:25:36Z <p>Sometimes a variable is used to "collect" the result of a longer block of nested ifs/elses... In those cases I sometimes keep the variable uninitialized, because it <em>should</em> be initialized later by one of the conditional branches.</p> <p>The trick is: if I leave it uninitialized at first and then there's a bug in the long if/else block so the variable is never assigned, I can see that bug in Valgrind :-) which of course requires to frequently run the code (ideally the regular tests) through Valgrind.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139868#139868 1 Answer by kervin for Should Local Variable Initialisation Be Mandatory? kervin 2008-09-26T14:26:36Z 2008-09-26T14:26:36Z <p>Always initialize local variables to zero at least. As you saw, there's no real performance it.</p> <pre><code>int i = 0; struct myStruct m = {0}; </code></pre> <p>You're basically adding 1 or 2 assembly instructions, if that. In fact, many C runtimes will do this for you on a "Release" build and you won't be changing a thing.</p> <p>But you should initalize it because you will now have that guarantee.</p> <p>One reason not to initialize has to do with debugging. Some runtimes, eg. MS CRT, will initialize memory with predetermined and documented patterns that you can identify. So when you're pouring through memory, you can see that the memory is indeed uninitialized and that hasn't been used and reset. That can be helpful in debugging. But that's during debugging.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139936#139936 2 Answer by Andrew Stein for Should Local Variable Initialisation Be Mandatory? Andrew Stein 2008-09-26T14:39:23Z 2008-09-27T00:27:22Z <p>It should be <em>mostly</em> mandatory. The reason for this has nothing to do with <em>performance</em> but rather the danger of using an unitialized variable. However, there are cases where it simply looks ridiculous. For example, I have seen:</p> <pre><code>struct stat s; s.st_dev = -1; s.st_ino = -1; s.st_mode = S_IRWXU; s.st_nlink = 0; s.st_size = 0; // etc... s.st_st_ctime = -1; if(stat(path, &amp;s) != 0) { // handle error return; } </code></pre> <p>WTF???</p> <p>Note that we are handling the error right away, so there is no question about what happens if the stat fails.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/139940#139940 4 Answer by buti-oxa for Should Local Variable Initialisation Be Mandatory? buti-oxa 2008-09-26T14:40:34Z 2008-09-26T15:26:51Z <p>If you think that an initialization is redundant, it is. My goal is to write code that is as humanly readable as possible. Unnecessary initialization confuses future reader.</p> <p>C compilers are getting pretty good at catching usage of unitialized variables, so the danger of that is now minimal.</p> <p>Don't forget, by making "fake" initialization, you trade one danger - crashing on using garbage (which leads to a bug that is very easy to find and fix) on another - program taking wrong action based on fake value (which leads to a bug that is very difficult to find). The choice depends on the application. For some, it is critical never to crash. For majority, it is better to catch the bug ASAP.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/140040#140040 2 Answer by Marcin for Should Local Variable Initialisation Be Mandatory? Marcin 2008-09-26T14:58:23Z 2008-09-26T15:27:14Z <p>This pertains to C++ only, but there is a definite distinction between the two methods. Let's assume you have a class <code> MyStuff</code>, and you want to initialize it by another class. You could do something like:</p> <pre><code>// Initialize MyStuff instance y // ... MyStuff x = y; // ... </code></pre> <p>What this actually does is call the copy constructor of x. It's the same as:</p> <pre><code>MyStuff x(y); </code></pre> <p>This is different than this code:</p> <pre><code>MyStuff x; // This calls the MyStuff default constructor. x = y; // This calls the MyStuff assignment operator. </code></pre> <p>Of course, completely different code is called when copy constructing vs. default constructing + assigning. Also, a single call to the copy constructor is likely to be more efficient than construction followed by assignment.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/140250#140250 0 Answer by Mark Ingram for Should Local Variable Initialisation Be Mandatory? Mark Ingram 2008-09-26T15:32:02Z 2008-09-26T15:32:02Z <p>As a simple example, can you determine what this will be initialised to (C/C++)?</p> <pre><code>bool myVar; </code></pre> <p>We had an issue in a product that would sometimes draw an image on screen and sometimes not, usually depending on who's machine it was built with. It turned out that on my machine it was being initialised to false, and on a colleagues machine it was being initialised to true.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/140901#140901 -1 Answer by quinmars for Should Local Variable Initialisation Be Mandatory? quinmars 2008-09-26T17:45:21Z 2008-09-26T18:13:36Z <p>I think it is in most cases a bad idea to initialize variables with an default value, because it simply hides bugs, that are easily found with uninitialized variables. If you forget to get and set the actual value, or delete the get code by accident, you probably never notice it because 0 is in many cases a reasonable value. Mostly it is much easier to trigger those bugs with an value >> 0.</p> <p>For example:</p> <pre><code> void func(int n) { int i = 0; ... // Many lines of code for (;i &lt; n; i++) do_something(i); </code></pre> <p>After some time you are going to add some other stuff.</p> <pre><code> void func(int n) { int i = 0; for (i = 0; i &lt; 3; i++) do_something_else(i); ... // Many lines of code for (;i &lt; n; i++) do_something(i); </code></pre> <p>Now your second loop won't start with 0, but with 3, depending on what the function does it can be very difficult to find, that there is even a bug.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/153289#153289 0 Answer by OldMan for Should Local Variable Initialisation Be Mandatory? OldMan 2008-09-30T14:26:54Z 2008-09-30T14:26:54Z <p>Just a secondary observation. Initializations are only EASILY optimized on primitive types or when assigned by const functions.</p> <p>a= foo();</p> <p>a= foo2();</p> <p>Cannot be easily optimized because foo may have side effects.</p> <p>Also heap allocations before time might result in huge performance hits. Take a code like</p> <pre><code>void foo(int x) </code></pre> <p>{</p> <p>ClassA *instance= new ClassA();</p> <p>//... do something not "instance" related... if(x>5) {</p> <pre><code>delete instance; return; </code></pre> <p>}</p> <p>//.. do something that uses instance</p> <p>}</p> <p>On that case, simply declare instance just when you will use it, and initialize it only there. And no The compiler Cannot optimize that for you since the constructor may have side effects that code reordering would change.</p> <p>edit: I fail at using the code listing feature :P</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/153411#153411 2 Answer by plinth for Should Local Variable Initialisation Be Mandatory? plinth 2008-09-30T14:54:33Z 2008-09-30T14:54:33Z <p>Let me tell you a story about a product I worked on in 1992 and later that, for the purposes of this story, we'll call Stackrobat. I was assigned a bug that caused the application to crash on the Mac, but not on Windows, oh and the bug was not reproducible reliably. It took QA the better part of a week to come up with a recipe that worked maybe 1 in 10 times.</p> <p>It was hell tracking down the root cause since the actual crash happened well after the action that did it.</p> <p>Ultimately, I tracked it down by writing a custom code profiler for the compiler. The compiler would quite happily inject calls to global prof_begin() and prof_end() functions and you were free to implement them yourselves. I wrote a profiler that took the return address from the stack, found the stack frame creation instruction, located the block on the stack that represented the locals for the function and coated them with a tasty layer of crap that would cause a bus error if any element was dereferenced.</p> <p>This caught something like a half dozen errors of pointers being used before initialization, including the bug I was looking for.</p> <p>What happened was that most of the time the stack happened to have values that were apparently benign if they were dereferenced. Other times the values would cause the app to shotgun its own heap, taking out the app sometime much later.</p> <p>I spent more than two weeks trying to find this bug.</p> <p>Lesson: initialize your locals. If someone barks performance at you, show them this comment and tell them that you'd rather spend two weeks running profiling code and fixing bottlenecks rather than having to track down bugs like this. Debugging tools and heap checkers have gotten way better since I had to do this, but quite frankly they got better to compensate for bugs from poor practices like this.</p> <p>Unless you're running on a tiny system (embedded, etc), initialization of locals should be nearly free. MOVE/LOAD instructions are very, very fast. Write the code to be solid and maintainable first. Refactor it to be performant second.</p> http://stackoverflow.com/questions/139686/should-local-variable-initialisation-be-mandatory/283127#283127 0 Answer by Adam Liss for Should Local Variable Initialisation Be Mandatory? Adam Liss 2008-11-12T05:37:06Z 2008-11-12T05:37:06Z <p>Yes: <em>always</em> initialize your variables unless you have a <em>very</em> good reason not to. If my code doesn't require a particular initial value, I'll often initialize a variable to a value that will <em>guarantee</em> a blatant error if the code that follows is broken.</p>