up vote 1 down vote favorite
share [g+] share [fb]

If I'm using Objective-C, here's how I declare an initialize an int:

int a = 1;

vs an object:

myObj *a = [[myObj alloc] init];

So this is a pointer to an object as denoted by the '*'. My question is, why aren't objects of type id declared this way? I.e., why is it this:

id genericObj;

and not:

id *genericObj;

?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Because id means identifier. Identifier, like pointer, identifies the object. Identifier isn't the object itself.

You can always treat it as typedef <some-mysterious-root-type>* id if you want.

link|improve this answer
feedback

Because id is defined as:

typedef struct objc_object {
    Class isa;
} *id;

So it's already a pointer.

link|improve this answer
Yep, and you can easily find this out by command-double clicking on the word id in your code, which will take you to the definition. – Rob Keniger Nov 26 '09 at 23:21
feedback

Pavel's answer is correct. Specifically, the "<mysterious-root-type> " is declared in objc.h as:

typedef struct objc_class *Class;
typedef struct objc_object {
    Class isa;
 } *id;
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.