I have two classes foo and bar where one is a superclass of the other, and they both have a method hello_world.
class foo {
virtual void hello_world();
};
class bar : public foo {
void hello_world();
};
My question is: is there any performance difference if I make it virtual
for bar's hello_world? It will become this:
class foo {
virtual void hello_world();
};
class bar : public foo {
virtual void hello_world();
};
I will mainly call hello_world from bar.
I know virtual function will make functions slow
because we do run time look up. But for this case, is there any difference?
virtualkeyword to a function that's already virtual (because it's inherited as a virtual function) changes performance, then the answer is no - thevirtualkeyword has no effect in that case at all. – Michael Burr Nov 14 '12 at 23:12