In Objective-C, why [object doSomething]? Wouldn't it be [*object doSomething] since you're calling a method on the object, which means you should dereference the pointer?
|
The answer harkens back to the C roots of Objective-C. Objective-C was originally written as a compiler pre-processor for C. That is, Objective-C wasn't compiled so much as it was transformed into straight C and then compiled. Start with the definition of the type
That is, an
Note that the layout of When you subclass NSObject and add some instance variables you are, for all intents and purposes, simply creating a new C structure that contains your instance variables as slots in that structure concatenated on the slots for the instance variables for all superclasses. (The modern runtime works slightly differently so that a superclass can have ivars appended without requiring all subclasses to be recompiled). Now, consider the difference between these two variables:
(NSRect being a simple C structure -- no ObjC involved). If you try to say:
The compiler will complain about the first, saying something along the lines of stack based objects are not allowed in Objective-C. In other words, all Objective-C objects must be allocated from the heap (more or less-- there are one or two exceptions, but they are comparatively esoteric to this discussion) and, as a result, you always refer to an object through the address of said object on the heap; you are always working with pointers to objects (and the Getting back to the C preprocessor roots of the language, you can translate every method call to an equivalent line of C. For example, the following two lines of code are identical:
Similarly, a method declared like this:
Is equivalent to C function declared like this:
And, looking at
And that is exactly why you don't use The object reference is carried through because it gives the messenger -- objc_msgSend() access to the class to then find the method implementation -- as well as that reference then becoming the first parameter -- the self -- of the method that is eventually executed. If you really want to go deep, start here. But don't bother until you have fully grokked this. |
|||||
|
|
You shouldn't really think of these as pointers-to-objects. It's sort of a historical implementation detail that they are pointers, and that you use them like that in message sending syntax (see @bbum's answer). In fact, they are just "object identifiers" (or references). Let's rewind a little bit to see the conceptual rationale. Objective-C was first proposed and discussed in this book: Object-Oriented Programming: An Evolutionary Approach. It's not immensely practical for modern Cocoa programmers, but the motivations for the language are in there. Note that in the book all objects are given type
So the answer to your question is twofold:
The strictly-typed syntax where you say "an object specifically of type NSString" and thus use If this seems like a high-minded response to a question about pointer dereferencing, it's important to keep in mind that objects in Objective-C are "special" per the definition of the language. They are implemented as structures and passed around as pointers to structures, but they are conceptually different. |
||||
|
|
|
|||||||||||
|
|
Because objc_msgSend() is declared like this:
|
||||
|
|
|
You never dereference object pointers, period. The fact that they're typed as pointers rather than just "object types" is an artifact of the language's C heritage. It's exactly equivalent to Java's type system, where objects are always accessed through references. You never dereference an object in Java — in fact, you can't. You should not think of them as pointers, because semantically, they aren't. They're just object references. |
|||
|
|
|
Part of the reason is that you would get null pointer exceptions left and right. Sending a message to But you can think of it as analogous to C++'s |
|||
|
|
I'd phrase this way: What a language associates to a series of alphabets is just a convention. The people who designed Objective-C decided that
to mean "sending the
is OK, but
is illegal. If the latter were possible, there would have to be a way to "send the message So, if the designers of Objective-C had followed your logic, you would have to write
every time you send a message... You see, |
|||
|
|
An object in Objective-C is essentially a When you declare an Objective-C object, you always declare it as a pointer type because the runtime gives your object to other methods and functions; if these change any members of the |
|||
|
|
|
The Objective-C runtime may need to bounce the object around to a couple different functions, so it wants the object reference, and not the object itself. |
|||||||
|