vote up 5 vote down star

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?

flag

68% accept rate
Just starting to learn about ObjC myself. Perhaps you can use ObjC++ to do the heavy lifting? – Toybuilder May 11 at 15:32
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 at 15:45
Pretty much an exact duplicate of stackoverflow.com/questions/649483/… – Barry Wark May 11 at 15:45

3 Answers

vote up 17 vote down check

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 objects 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. Generics are needed in languages such as Java and C# because they are strong, statically typed languages. Totally different ballgame than Objective-C.

link|flag
vote up 8 vote down

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|flag
vote up 3 vote down

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|flag

Your Answer

Get an OpenID
or

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