What is the best way to replace or substitute if..else if..else trees in programs?

后端 未结 21 1150
迷失自我
迷失自我 2020-11-28 06:23

This question is motivated by something I\'ve lately started to see a bit too often, the if..else if..else structure. While it\'s simple and has its uses, somet

21条回答
  •  暖寄归人
    2020-11-28 07:22

    Naturally, this question is language-dependent, but a switch statement might be a better option in many cases. A good C or C++ compiler will be able to generate a jump table, which will be significantly faster for large sets of cases.

提交回复
热议问题