Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Mac/iPhone programming and Objective-C. In C# and Java we have "generics", collection classes whose members can only be of the type declared. For example, in C#

Dictionary<int, MyCustomObject>

can only contain keys that are integers and values that are of type MyCustomObject. Does a similar mechanism exist in Objective-C?

share|improve this question
Just starting to learn about ObjC myself. Perhaps you can use ObjC++ to do the heavy lifting? – Toybuilder May 11 '09 at 15:32
1  
ObjC++ isn't really a language... just more of a way to reference ObjC's ability to handle C++ inline just the same as it would handle C. You shouldn't do this unless you have to, though (such as if you need to use a third-party library that was written in C++). – Marc W May 11 '09 at 15:45
Pretty much an exact duplicate of stackoverflow.com/questions/649483/… – Barry Wark May 11 '09 at 15:45

6 Answers

up vote 69 down vote accepted

No, there are no generics in Objective-C unless you want to use C++ templates in your own custom collection classes (which I strongly discourage).

Objective-C has dynamic typing as a feature, which means that the runtime doesn't care about the type of an object since all objects can receive messages. When you add an object to a built-in collection, they are just treated as if they were type id. But don't worry, just send messages to those objects like normal; it will work fine (unless of course one or more of the objects in the collection don't respond to the message you are sending).

Generics are needed in languages such as Java and C# because they are strong, statically typed languages. Totally different ballgame than Objective-C's dynamic typing feature.

share|improve this answer
31  
I disagree to "don't worry, just send messages to those objects". If you put the wrong type of objects into the collection, which do not respond to these messages, this will yield runtime errors. Using generics in other languages avoids this problem with compile time checks. – henning77 Jan 4 '12 at 16:24
5  
@henning77 Yes, but Objective-C is a more dynamic language than these languages. If you want strong type-safety, use those languages. – Raffi Khatchadourian Jan 16 '12 at 9:11
14  
I also disagree to the don't worry philosophy - for example if you pull the first item out of an NSArray and cast it to an NSNumber but that item was really an NSString, you are screwed... – PsychoDad Jan 19 '12 at 20:27
2  
@Marc: then consider changing the wording? – bacar Jan 29 '12 at 15:10
2  
@RaffiKhatchadourian -- not much choice if you're writing an iOS app. If it was simple to write one with Java, and get all the benefits of writing a native app, believe me: I would. – ericsoco Jan 28 at 4:52
show 5 more comments

You may be interested in answers to this question: Is there any way to enforce typing on NSArray, NSMutableArray, etc.?.

Arguments are given why it is not common practice in Objective-C/Cocoa.

share|improve this answer

There are no generics in Objective-C.

From the Docs

Arrays are ordered collections of objects. Cocoa provides several array classes, NSArray, NSMutableArray (a subclass of NSArray), and NSPointerArray.

share|improve this answer

No, but to make it clearer you can comment it with the type of object you want to store, I've seen this done a few times when you need to write something in Java 1.4 nowadays) e.g.:

NSMutableArray* /*<TypeA>*/ arrayName = ....

or

NSDictionary* /*<TypeA, TypeB>*/ dictionaryName = ...
share|improve this answer
I guess this is a good way to have it documented, in case someone else reads your code. Anyway the variable's name should be as clear as possible to know what objects it contains. – htafoya Dec 16 '12 at 18:27

Have a look at WMGenericCollection (Disclaimer: this is my project). It is a template library that lets you create custom subclasses to the Cocoa containers, restricting them to a certain type.

There is no C++ involved - it uses the C preprocessor's #define statement to allow the creation of custom collection classes for the specified type.

The created classes could be seen as just syntactic sugar. They are 1:1 redefinitions of the Cocoa headers, but with a fixed type instead of id. This means that the types are checked at compilation time, but not enforced during runtime. In fact, there aren't any implementations provided - the standard Cocoa collections are used.

As an example, here's the code to create an NSArray subclass that only contains NSStrings:

WMGENERICARRAY_INTERFACE(NSString *, // type of the value class
                         // generated class names
                         WMStringArray, WMMutableStringArray)

Now, having the classes WMStringArray and WMMutableStringArray, what are they good for?

Compiler warnings

When using collections with a specified value type, the compiler will issue a warning on all actions which assign objects of incompatible types.

compiler warnings

Property access

Where standard collections return id, the collections with specified type return objects of this type, enabling for example direct property access.

direct property access

Automatic code creation

Xcode automatically creates code for methods that take blocks as arguments. This code is created automatically for the specified type, not for id. This enables property access in the code block, and better code completion.

Xcode code creation

Code completion

When accessing values of a collection, the compiler will know the specified type and will provide much better code completion.

better code completion

Compatibility

The custom subclasses are a drop in replacement for the standard Cocoa collection classes. Only the types of returned objects and arguments change - but none of the method names.

Notes

For nearly all methods of the Cocoa classes, type checks are performed at compilation time and will throw warnings if there is a mismatch. There are two exceptions: object creation (for example with @[] and the fast enumeration object in a for loop.

But in my mind, all the other features are amazingly helpful and outweigh these two problems. Also, the type is checked when enumerating with blocks, which is a great alternative to for loops in many cases anyhow.

For more details, see the project page at github.

share|improve this answer

The Collections classes provided by Apple and GNUStep frameworks are semi-generic in that they assume that they are given objects, some that are sortable and some that respond to certain messages. For primitives like floats, ints, etc, all the C arrays structure is intact and can be used, and there are special wrapper objects for them for use in the general collection classes (eg NSNumber). In addition, a Collection class may be sub-classed (or specifically modified via categories) to accept objects of any type, but you have to write all the type-handling code yourself. Messages may be sent to any object but should return null if it is inappropriate for the object, or the message should be forwarded to an appropriate object. True type errors should be caught at compile-time, not at run-time. At run-time they should be handled or ignored. Finally, Objc provides run-time reflection facilities to handle tricky cases and message response, specific type, and services can be checked on an object before it is sent a message or put into an inappropriate collection. Beware that disparate libraries and frameworks adopt different conventions as to how their objects behave when sent messages they do not have code responses for, so RTFM. Other than toy programs and debugging builds, most programs should not have to crash unless they really screw up and try to write bad data to memory or disk, perform illegal operations (eg divide by zero, but you can catch that too), or access off-limits system resources. The dynamism and run-time of Objective-C allows for things to fail gracefully and should be built in to your code. (HINT) if yo are having trouble with genericity in your functions, try some specificity. Write the functions over with specific types and let the runtime select (thats why they are called selectors!) the appropriate member-function at run-time.

Example:
    -(id) sort (id) obj;  // too generic. catches all.
     // better
    -(id) sort: (EasilySortableCollection*) esc;
    -(id) sort: (HardToSortCollection*) hsc; 
    ...
    [Sorter  sort: MyEasyColl];
    [Sorter  sort: MyHardColl];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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