show/hide this revision's text 2 addressed comments

If

Short answer: declare the variable as close to first use as possible and initialize to "zero" if you compile under -Wall, still need to.

Long answer: If you will get a warning if declare a variable is used un-initialized. Thereforeat the start of a function, if your team compiles under -Wall, initialize whenever and don't use it until later, you wantshould reconsider your placement of the variable to as local a scope as possible. Otherwise, play You can then usually assign to it safe and zero everythingthe needed value right away.

However

If you must declare it uninitialized because it gets assigned in a conditional, this does raise or passed by reference and assigned to, initializing it to a question null-equivalent value is a good idea. The compiler can sometimes save you if you compile under -why are Wall, as it will warn if you declaring read from a variable before initializing itis assigned to? In C that makes sense because you have to. However, but in C++ it should happen infrequently fails to warn you if ever. Declaring you pass it before use will make the code harder to reada function.

If you must declare play it empty, safe and set it is of to a non auto-initialized typenull-equivalent, you should probably zero it unless you have done actual performances tests no harm if the function you pass it to show that overwrites ithurts . 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".

show/hide this revision's text 1

If you compile under -Wall, you will get a warning if a variable is used un-initialized. Therefore, if your team compiles under -Wall, initialize whenever you want. Otherwise, play it safe and zero everything.

However, this does raise a question - why are you declaring a variable before it is assigned to? In C that makes sense because you have to, but in C++ it should happen infrequently if ever. Declaring it before use will make the code harder to read. If you must declare it empty, and it is of a non auto-initialized type, you should probably zero it unless you have done actual performances tests to show that it hurts you.