Rob, Rob Rix (RR) wrote at Fri, 7 Sep 2001 15:38:29 -0400: RR> I think I recall reading that Obj-C would automatically initialize ints, RR> et cetera, to zero. Is this correct? Yes and no. It just zero-fills a new object. Since ints et cetera are zero when zero-filled, it works for them. RR> Can I just initialize the three I RR> need to be one and leave the rest out? I must admit I _don't know_ whether a zero-filled double really represents 0.0e0 (I guess not!). If so, you can; if not, you have to init them explicitly.
Rob Rix (RR) wrote at Fri, 7 Sep 2001 15:38:29 -0400: