vote up 1 vote down star

Maybe my memory has gone completely wacko, but I think I remember that declaring pointers without initializing them made them point to nil. But recently this doesn't seem to be the case. Has it always been this way? Or has it something to do with the compiler settings?

flag

1  
Only static "fields" are initialized to nil, I think. Local variables would point to garbage. I think that has been the case always. Do you remember any specifics? – notnoop Oct 24 at 21:20

1 Answer

vote up 7 vote down check

Instance variables of objects are initialized to nil in alloc (the whole object is bzeroed).

Edit: Also, global and static storage variables are initialized to zero (6.7.8 10 of the C99 Standard, thanks Derek for pointing that out).

Local stack variables are not initialized automatically. This did not change in known history.

link|flag
Actually, globals and static variables are always initialized. – Derek Ledbetter Oct 24 at 22:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.