Tagged Questions

6
votes
3answers
658 views

Dynamic binding seems like a lie

Objective-C uses dynamic binding: that is method calls are resolved at runtime. Fine. And use of dot notation really boils down to a method call But, why then, can't I do something like this: ...
1
vote
2answers
79 views

Stuck in understanding dynamic binding in Objective-c

I have just started learning Objective-C, I am reading Programming in Objective-C 3rd Edition by Stephen G. Kochan. There's a paragraph explaining the polymorphism mechanism: At runtime, the ...
1
vote
2answers
317 views

Objective-C Late Static Binding

I'm teaching myself Objective-C as a guilty pleasure, if you would. I have a self-proclaimed strong grasp of the Java language, so it's not a terribly difficult transition – it sure is fun though. But ...
0
votes
5answers
80 views

O'Reilly's “Objective-C Pocket Reference” claims C++ doesn't support Dynamic Dispatch, is this true?

On page 4, it says: Objective-C decides dynamically--at run-time--what code will handle a message by searching the receiver's class and parent classes. (The Objective-C runtime caches the search ...
0
votes
1answer
55 views

Question about dynamic binding, Objective C and methods

According to Apple's Objective C guide, methods with the same name all use the same selector and that they need to have the same return type as well as parameters. Then there is something about ...
0
votes
2answers
1k views

Objective-C uses dynamic binding, but how?

I know that Objective-C uses dynamic binding for all method calls. How is this implemented? Does objective-c "turn into C code" before compilation and just use (void*) pointers for everything?