In reply to dave_59:
Hi Dave,
If I were to compare polimorphism to callback style, I would say both seem like a function call but virtual function look up would seem more expensive since its searched on run time. What makes callback style to have performance penalty when compared to virtual function lookup?
Is it due to new object allocation in case of callbacks?