Re: Initialization of doubles
Re: Initialization of doubles
- Subject: Re: Initialization of doubles
- From: "Erik M. Buck" <email@hidden>
- Date: Fri, 7 Sep 2001 15:37:13 -0500
Objective-C initializes all instance variables to the bit pattern that is
all zeros. This probably happens because calloc() is used to allocate
instances. If the bit pattern of all zeros happens to be the floating point
representation of zero, then you are in luck!