Check if only one single bit is set within an integer (whatever its position)(检查整数中是否只设置了一个位(无论其位置如何))
问题描述
我使用 64 位整数中的位存储标志.
我想知道在 64 位整数中的位置是否设置了一个位(即我不关心任何特定位的位置).
I store flags using bits within a 64-bits integer.
I want to know if there is a single bit set whatever the position within the 64-bits integer (e.i. I do not care about the position of any specific bit).
boolean isOneSingleBitSet (long integer64)
{
return ....;
}
我可以使用 Bit Twiddling Hacks 计算位数(肖恩·埃隆·安德森(Sean Eron Anderson)),但我想知道仅检测是否设置了一个位的最有效方法是什么...
I could count number of bits using the Bit Twiddling Hacks (by Sean Eron Anderson), but I am wondering what is the most efficient way to just detect whether one single bit is set...
我发现了一些其他相关的问题:
I found some other related questions:
- (8051) 检查是否设置了单个位
- 检测整数内的单个一位流
还有一些维基百科页面:
and also some Wikipedia pages:
- 查找第一个
- 位操作
- 汉明权重
注意:我的应用程序是用 java 编写的,但我对使用其他语言的优化感到好奇...
NB: my application is in java, but I am curious about optimizations using other languages...
编辑:Lưu Vĩnh Phúc 指出我的问题中的第一个链接已经得到了答案:请参阅确定整数是否为 2 的幂部分em>Bit Twiddling Hacks(作者 Sean Eron Anderson).我没有意识到一位与二的幂是一样的.
EDIT: Lưu Vĩnh Phúc pointed out that my first link within my question already got the answer: see section Determining if an integer is a power of 2 in the Bit Twiddling Hacks (by Sean Eron Anderson). I did not realized that one single bit was the same as power of two.
推荐答案
如果您只是想检查是否设置了一个位,那么您实际上是在检查该数字是否是 2 的幂.要做到这一点,您可以做:
If you just literally want to check if one single bit is set, then you are essentially checking if the number is a power of 2. To do this you can do:
if ((number & (number-1)) == 0) ...
这也将 0 视为 2 的幂,因此如果这很重要,您应该检查不是 0 的数字.那么:
This will also count 0 as a power of 2, so you should check for the number not being 0 if that is important. So then:
if (number != 0 && (number & (number-1)) == 0) ...
这篇关于检查整数中是否只设置了一个位(无论其位置如何)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:检查整数中是否只设置了一个位(无论其位置如何


- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01