哪个是更好的选择用于除以2的整数? [英] Which is better option to use for dividing an integer number by 2?

查看:133
本文介绍了哪个是更好的选择用于除以2的整数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下哪一项技术是除以2的整数,为什么最好的选择?

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

技术1:

x = x >> 1;

技术2:

x = x / 2;

下面 X 是一个整数。

推荐答案

使用操作最能说明​​你正在尝试做的。

Use the operation that best describes what you are trying to do.


  • 如果您正在治疗人数为位序列,使用bitshift。

  • 如果你把它当作一个数值,使用部门。

请注意,他们不是完全等同。他们可以给负整数不同的结果。例如:

Note that they are not exactly equivalent. They can give different results for negative integers. For example:

-5 / 2  = -2
-5 >> 1 = -3

(ideone)

这篇关于哪个是更好的选择用于除以2的整数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆