Tagged Questions

9
votes
5answers
10k views

Early binding vs. late binding: what are the comparative benefits and disadvantages?

When discussing the evolution of computer languages, Alan Kay says that the single most important attribute of his Smalltalk is late binding; it gives the language its malleability and extensibility, ...
5
votes
6answers
84 views

How can I determine if a compiler uses early or late binding on a virtual function?

I have the following code: class Pet { public: virtual string speak() const { return ""; } }; class Dog : public Pet { public: string speak() const { return "Bark!"; } }; int main() { Dog ...