|
|
|
|
|
by hn_acc_2
2092 days ago
|
|
It depends on your compiler. But as a general rule, the programmer will have a hard time "outsmarting" the compiler by using different objects or abstractions. Compiler authors have spent many hundreds of combined hours making C code run as fast as possible, and optimizing the switch statement is something they've most certainly done to death. I.e. if your control flow is switch-case-like, use a switch-case. |
|
https://github.com/python/cpython/blob/master/Python/ceval.c...