up vote 24 down vote favorite
3
share [g+] share [fb]

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?

link|improve this question

64% accept rate
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
feedback

4 Answers

up vote 45 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 is a dynamically typed language, 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.

link|improve this answer
3  
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 at 16:24
1  
@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 at 9:11
3  
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 at 20:27
You all may be reading into that wording a bit much, but I see how you could come to the conclusion that I was implying that no errors could occur (which is not what I meant to imply). – Marc W Jan 20 at 16:37
@Marc: then consider changing the wording? – bacar 2 days ago
show 1 more comment
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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 = ...
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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