evan_tech

Previous Entry Share Flag Next Entry
09:02 pm, 11 Apr 05

c++

What's faster:
  1. if (runtime_constant_condition) { a(); } else { b(); }
  2. Calling a virtual function a_or_b(); that does something different depending on the subclass. (As I understand it, an indirect jump?)