Is it safe to count on ints always being initialized to 0 in Objective-C?
More specifically, when an object with int ivars has been newly instantiated, is it safe to assume that its ivars have value 0?
|
Is it safe to count on More specifically, when an object with |
||||
|
|
|
Yes, class instance variables are always initialized to 0 (or
EDIT 2013-05-08
However, this is only true for instance variables of a class; it is also true for POD types declared at global scope:
It is not true for local variables, or for data allocated with In C++ (and C++ objects being used in Objective-C++), class instance variables are also not zero-initialized. You must explicitly initialize them in your constructor(s). |
|||||||||||||||
|
|
I don't think you should assume any values for initialization. If you are building logic around a "0" value, you should set it to be sure. |
|||||||
|