Object C

Page 58

CHAPTER 3

Allocating and Initializing Objects

+ (id)arrayWithObject:(id)anObject; + (id)arrayWithObjects:(id)firstObj, ...;

Important: You must understand the memory management implications of using these methods if you do not use garbage collection (see “Memory Management” (page 15)). You must read Memory Management Programming Guide to understand the policy that applies to these convenience constructors. The return type of convenience constructors is id for the same reason it is id for initializer methods, as discussed in “Constraints and Conventions” (page 50). Methods that combine allocation and initialization are particularly valuable if the allocation must somehow be informed by the initialization. For example, if the data for the initialization is taken from a file, and the file might contain enough data to initialize more than one object, it would be impossible to know how many objects to allocate until the file is opened. In this case, you might implement a listFromFile: method that takes the name of the file as a parameter. It would open the file, see how many objects to allocate, and create a List object large enough to hold all the new objects. It would then allocate and initialize the objects from data in the file, put them in the list, and finally return the list. It also makes sense to combine allocation and initialization in a single method if you want to avoid the step of blindly allocating memory for a new object that you might not use. As mentioned in “The Returned Object” (page 49), an init... method might sometimes substitute another object for the receiver. For example, when initWithName: is passed a name that’s already taken, it might free the receiver and in its place return the object that was previously assigned the name. This means, of course, that an object is allocated and freed immediately without ever being used. If the code that determines whether the receiver should be initialized is placed inside the method that does the allocation instead of inside init..., you can avoid the step of allocating a new instance when one isn’t needed. In the following example, the soloist method ensures that there’s no more than one instance of the Soloist class. It allocates and initializes a single shared instance: + (Soloist *)soloist { static Soloist *instance = nil; if ( instance == nil ) { instance = [[self alloc] init]; } return instance; }

Notice that in this case the return type is Soloist *. Because this method returns a singleton share instance, strong typing is appropriate—there is no expectation that this method will be overridden.

58

Combining Allocation and Initialization 2010-12-08 | © 2010 Apple Inc. All Rights Reserved.


Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.