Which is better option to use for dividing an integer number by 2?

前端 未结 23 1711
甜味超标
甜味超标 2020-11-27 09:10

Which of the following techniques is the best option for dividing an integer by 2 and why?

Technique 1:

x = x >> 1;

Technique

23条回答
  •  轮回少年
    2020-11-27 09:26

    Just use divide (/), presuming it is clearer. The compiler will optimize accordingly.

提交回复
热议问题