Java中的位级操作

发布于 2024-12-11 01:54:15 字数 253 浏览 0 评论 0原文

我正在尝试在 Java 中进行一些位操作来应用掩码、表示集合等。 为什么:

int one=1;
int two=2;
int andop=1&2;
System.out.println(andop);

在应该是“3”时打印“0”:

0...001
0...010
_______
0...011

我怎样才能得到这种行为?

提前致谢

I'm trying to make some bit operations in Java for applying masks, represent sets etc.
Why:

int one=1;
int two=2;
int andop=1&2;
System.out.println(andop);

Prints a "0" when is supposed to be "3":

0...001
0...010
_______
0...011

And how can I get that behavior?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

羁客 2024-12-18 01:54:15

使用二元“或”运算符:

int andop = 1 | 2;

二元“与”运算符将保留两侧的位集;在 12 的情况下,根本没有位。

Use the binary 'or' operator:

int andop = 1 | 2;

The binary 'and' operator will leave bits sets that are in both sides; in the case of 1 and 2 that is no bits at all.

喜爱纠缠 2024-12-18 01:54:15

您混淆了按位或和按位与

You mixed up bitwise OR and bitwise AND

萌酱 2024-12-18 01:54:15

您正在寻找按位“OR”,而不是“AND”:

int both = one | two;

“OR”表示:“如果输入x中的位n应该为1*或*输入 y 中为 1"

"AND" 表示:“如果输入 x 中为 1,则位 n 应该为 1 *并且* 在输入中为 1输入y

You're looking for a bitwise "OR", not "AND":

int both = one | two;

"OR" says: "bit n should be 1 if it's 1 in input x *or* it's 1 in input y"

"AND" says: "bit n should be 1 if it's 1 in input x *and* it's 1 in input y"

淡看悲欢离合 2024-12-18 01:54:15

&必须都是 1 个

0...001
&...&&&
0...010
_______
0...000

答案 = 0
|是或,一个 1 就可以

0...001
|...|||
0...010
_______
0...011

答案 = 3

& must be both 1

0...001
&...&&&
0...010
_______
0...000

answer = 0
| is or ,one 1 is OK

0...001
|...|||
0...010
_______
0...011

answer = 3

椒妓 2024-12-18 01:54:15

更好的解决方案是使用带有 intONE(1)、TWO(2) 等的 enum 以及 EnumSet

来自 JavaDoc:

枚举集在内部表示为位向量。这
表现形式极其紧凑和高效。空间和时间
这个类的性能应该足够好,可以将其用作
高质量、类型安全的传统基于 int 的“位”替代品
标志
。”

Better solution is to use enums with int values ONE(1), TWO(2) etc, and EnumSet.

From JavaDoc:

Enum sets are represented internally as bit vectors. This
representation is extremely compact and efficient. The space and time
performance of this class should be good enough to allow its use as a
high-quality, typesafe alternative to traditional int-based "bit
flags
."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文