What is the meaning of id?

Objective CTypes

Objective C Problem Overview


I am (trying to) learn Objective-C and I keep coming across a phrase like:

-(id) init;

And I understand id is an Objective C language keyword, but what does it mean to say "the compiler specifically treats id in terms of the pointer type conversion rules"?

Does id automatically designate the object to its right as a pointer?

Objective C Solutions


Solution 1 - Objective C

id is a pointer to any type, but unlike void * it always points to an Objective-C object. For example, you can add anything of type id to an NSArray, but those objects must respond to retain and release.

The compiler is totally happy for you to implicitly cast any object to id, and for you to cast id to any object. This is unlike any other implicit casting in Objective-C, and is the basis for most container types in Cocoa.

Solution 2 - Objective C

id is a pointer to any Objective-C object (objc_object). It is not just a void pointer and you should not treat it as so. It references an object that should have a valid isa pointer. The values that can be stored in id are also not just limited to NSObject and its descendants, which starts to make sense of the existence of the NSObject protocol as well as the NSProxy class which does not even inherit from NSObject. The compiler will allow you to assign an object referenced by type id to any object type, assign any object type to id, as well as send it any message (that the compiler has seen) without warning.

Solution 3 - Objective C

id is a generic type. This means that the compiler will expect any object type there, and will not enforce restrictions. It can be useful if you're expecting to use more than one class of objects there; you can then use introspection to find out which class it is. id automatically assumes a pointer, as all objects in Objective-C are passed as pointers/references.

Some Additional Resources:
id vs NSObject vs id*
Objective-C Programming (Wikibooks)
Introspection
Dynamic Typing

Solution 4 - Objective C

  • id is a data type of object identifiers in Objective-C, which can be use for an object of any type no matter what class does it have. id is the final super type of all objects.

In java or c# we use like this

 Object data = someValue;


 String name =(Object)data;

but in objective c

id data= someValue;



NSString *name= data;

Solution 5 - Objective C

Yes and no. It's true that having id x designates x as a pointer, but saying that the pointer type conversion rules apply is wrong, because "id" has special type conversion rules. For example, with a void * pointer you can't do this:

void *x;
char *y = x; // error, this needs an explicit cast

On the contrary, it's possible with id:

id x;
NSString *y = x;

See more usage of type id in objective c examples.

In addition in the "modern" Objective C it's preferred to use instancetype instead of "id" on "init" methods. There's even an automatic conversion tool in Xcode for changing that. Read about instancetype: https://stackoverflow.com/questions/8972221/would-it-be-beneficial-to-begin-using-instancetype-instead-of-id

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGPPView Question on Stackoverflow
Solution 1 - Objective CjoerickView Answer on Stackoverflow
Solution 2 - Objective CJoeView Answer on Stackoverflow
Solution 3 - Objective CFeifanZView Answer on Stackoverflow
Solution 4 - Objective Cuser7538321View Answer on Stackoverflow
Solution 5 - Objective CbattlmonstrView Answer on Stackoverflow