长逻辑(AND、OR、XOR)

发布于 2024-11-26 09:25:34 字数 83 浏览 3 评论 0原文

我正在用 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 技术交流群。

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

发布评论

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

评论(3

你的背包 2024-12-03 09:25:34

您可以对长整数应用按位运算符:

  • & 是 AND
  • | 是 OR
  • ^ 是 XOR

You can apply bit-wise operators on longs:

  • & is AND
  • | is OR
  • ^ is XOR
云雾 2024-12-03 09:25:34

也许他们想实现类似IDL的逻辑运算符

默认定义真与假

Data Type                    True                              False 
====================================================================================
Byte,integer, and long       Odd integers                      Zero or even integers 
Floating point and complex   Non-zero values                   Zero 
String                       Any string with non-zero length   Null string (" ") 
Heap variables               Non-null values                   Null values

Maybe they wanted to implement IDL-like logical operators

Default Definitions of True and False

Data Type                    True                              False 
====================================================================================
Byte,integer, and long       Odd integers                      Zero or even integers 
Floating point and complex   Non-zero values                   Zero 
String                       Any string with non-zero length   Null string (" ") 
Heap variables               Non-null values                   Null values
我爱人 2024-12-03 09:25:34

你说不可能是什么意思? <代码>3 | 4 | 5 是一个完全有效的表达式,如 3 & 4& 5..

What do you mean by not possible? 3 | 4 | 5 is a perfectly valid expression as 3 & 4 & 5.

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