Tagged Questions
5
votes
6answers
85 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 ...