How is objective-c possibly a superset of C? It makes no sense. There is no stack in objective-c from what I can tell. Also, in C there is no need to use [] whenever invoking a method. Please explain.
feedback
|
closed as not constructive by Tim Post♦ Jan 24 at 8:27
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
There is a stack in Objective-C, just objects aren't (for the most part) found on it. C types are, though, so in that sense C + (objects on the heap) is a superset of C. Similarly, there are no methods in C, so Compare that with the notion that C++ doesn't allow implicit pointer conversion from | |||||||
feedback
|
|
All C code is valid in an Objective-C program. Objective-C's syntax is part of the superset. | |||
|
feedback
|
|
Objective-C does use the same call stack as C. And the brackets are part of the "superset" which means they are part of the Objective-C syntax but not part of the "subset" C syntax. | |||
|
feedback
|
|
I highly suggest an Obj-C book. Objective-C adds Smalltalk-style messaging. These are done in the form of...
That's what the brackets are for. You aren't directly calling the method, you are sending a message to the object. You aren't guaranteed the object will even respond to the message. That's why there is a different style syntax. And there is a stack in Objective-C. | |||
|
feedback
|
|
Just learn: The Objective-C 2.0 Programming Language. | |||
|
feedback
|
|
The fact that it's a superset means that that valid C code is also valid Objective-C code. What works in C that you think doesn't in Objective-C ? | |||||||
feedback
|