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.

link|improve this question

60% accept rate
In C there's no method at all! Objective-C uses [] to extend C semantic. – Remo.D Apr 7 '09 at 20:06
Nothing in the standard says that C has to have a stack either. – sigjuice Apr 7 '09 at 20:08
Objective-C has a stack and you can put variables on it. That objects are allocated on the heap is an implementation decision. Create a custom allocator that is backed by alloca and your objects will be on the stack. Of course, it's not particularly useful... – Jason Coco Apr 7 '09 at 20:34
No need to keep downvoting...just got a little confused because I come from a c++ background and not really C. I guess this should really be closed. – Will Den Aug 3 '11 at 18:36
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.

6 Answers

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 [object message] has no meaning in C. Adding it, as Objective-C does, still means that C exists in its entirety so C + (object messaging syntax) is a superset of C.

Compare that with the notion that C++ doesn't allow implicit pointer conversion from void *, so C - (implicit pointer conversion) is less than C, so C++ cannot possibly be a superset.

link|improve this answer
How can it be a superset if objects are not used on the stack? You can put a struct on the stack in objective-c. – Will Den Apr 7 '09 at 20:10
5  
Because objects are used at all, which means it has a feature that C doesn't; and it has all of the C features ;-) – Graham Lee Apr 7 '09 at 20:14
feedback

All C code is valid in an Objective-C program. Objective-C's syntax is part of the superset.

link|improve this answer
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.

link|improve this answer
feedback

I highly suggest an Obj-C book. Objective-C adds Smalltalk-style messaging. These are done in the form of...

[someObject someMethod:param1];

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.

link|improve this answer
feedback

Just learn: The Objective-C 2.0 Programming Language.

link|improve this answer
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 ?

link|improve this answer
Putting variables on the stack. – Will Den Apr 7 '09 at 20:20
1  
You can put variables on the stack in Objective-C. What are you talking about? – Jason Coco Apr 7 '09 at 20:33
feedback

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