问答详情
源自:1-1 文件的编码

为什么我的Eclipse中 System.out.print(Integer.toHexString(b && 0xff)+" ");会报错

http://img1.mukewang.com/5da483250001415a11090147.jpg

The operator && is undefined for the argument type(s) byte, int

提问者:森森0515 2019-10-14 22:16

个回答

  • 不见子都
    2020-02-04 17:20:03

    b & 0xff,这个是必须的吗,就算我不加& 0xff,也到的结果也是一样的。

  • 森森0515
    2019-10-14 22:22:57

    System.out.print(Integer.toHexString(b & 0xff)+"  ");

    好吧我粗心了,是这个符号&我写成逻辑符号了