长逻辑(AND、OR、XOR)
我正在用 Java 扩展一个工具,它能够以某种方式对三个 Long 值应用逻辑(AND、OR 和 XOR)。
这怎么可能?如果可以的话?
I am extending a tool in Java that somehow is capable of applying Logical (AND, OR and XOR) over three Long values.
How is that possible? If it is possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以对长整数应用按位运算符:
&
是 AND|
是 OR^
是 XORYou can apply bit-wise operators on longs:
&
is AND|
is OR^
is XOR也许他们想实现类似IDL的逻辑运算符
默认定义真与假
Maybe they wanted to implement IDL-like logical operators
Default Definitions of True and False
你说不可能是什么意思? <代码>3 | 4 | 5 是一个完全有效的表达式,如
3 & 4& 5.
.What do you mean by not possible?
3 | 4 | 5
is a perfectly valid expression as3 & 4 & 5
.