|
2 |
edited tags
|
||
|
1 |
|
||
Should Local Variable Initialisation Be Mandatory?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. It's easy to demonstrate in c that redundant initialisation is optimised out:
[Not Optimised:]
[Optimised:]
So WRT performance under what circumstances is mandatory variable initialisation NOT a good idea? 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!)
|
||||
