show/hide this revision's text 2 Added optimization note.

Performance-wise, a C++ static method should can be slightly faster than a non-virtual instance method, as there's no need for a 'this' pointer to get passed to the method. In turn, both will be faster than virtual methods as there's no VMT lookup needed.

But, it's likely to be right down in the noise..noise - particularly for languages which allow unnecessary parameter passing to be optimized out.

show/hide this revision's text 1

Performance-wise, a static method should be slightly faster than a non-virtual instance method, as there's no need for a 'this' pointer to get passed to the method. In turn, both will be faster than virtual methods as there's no VMT lookup needed.

But, it's likely to be right down in the noise...