为什么java/android允许按位&布尔变量和字符串之间

发布于 2024-11-29 15:47:09 字数 108 浏览 2 评论 0原文

我可以做按位 &布尔变量和字符串之间。 没有编译错误!

结果会怎样呢?它是如何运作的。 根据我的理解,它不允许这种类型的按位运算。 这是一个错误还是按位功能仅考虑位而不关心类型?

I am allowed to do a bitwise & between a boolean variable and a String.
There is no compilation error!

What would the result? How does it work.
As per my understanding, it shall not allow the bitwise operation of this type.
Is it a bug or bitwise feature thinks only interms of bit and dont care about type?

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

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

发布评论

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

评论(1

赏烟花じ飞满天 2024-12-06 15:47:09

可以按位 & 字符,但不能是字符串。示例:

public class BitwiseTest {
  public static void main(String[] args) {
    System.out.println(Integer.toBinaryString(0));
    System.out.println(Integer.toBinaryString(1));
    System.out.println(Integer.toBinaryString(2));
    System.out.println(Integer.toBinaryString(1&2));
    System.out.println(Integer.toBinaryString(1&'2'));
  }
}

打印...

0
1
10
11
110011

而这不会编译:

System.out.println(Integer.toBinaryString(1&"my String"));

编译器输出:

$ javac BitwiseTest.java 
BitwiseTest.java:10: operator & cannot be applied to int,java.lang.String
System.out.println(Integer.toBinaryString(1&"my String"));
                                           ^
1 error

It is possible to bitwise & characters, but not Strings. Exapmle:

public class BitwiseTest {
  public static void main(String[] args) {
    System.out.println(Integer.toBinaryString(0));
    System.out.println(Integer.toBinaryString(1));
    System.out.println(Integer.toBinaryString(2));
    System.out.println(Integer.toBinaryString(1&2));
    System.out.println(Integer.toBinaryString(1&'2'));
  }
}

prints ...

0
1
10
11
110011

whereas this does not compile:

System.out.println(Integer.toBinaryString(1&"my String"));

compiler output:

$ javac BitwiseTest.java 
BitwiseTest.java:10: operator & cannot be applied to int,java.lang.String
System.out.println(Integer.toBinaryString(1&"my String"));
                                           ^
1 error
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文