Bitwise XOR java long

好久不见. 提交于 2019-12-01 03:14:59

问题


I am using Oracle Java 7.51 on Ubuntu 12.04, and trying to do this

long a = 0x0000000080000001 ^ 0x4065DE839A6F89EEL;
System.out.println("result "+ Long.toHexString(a));

Output: result bf9a217c1a6f89ef

But I was expecting result to be 4065de831a6f89ef, since ^ operator is a bitwise XOR in Java. Which part of Java specification am I reading wrong?


回答1:


You need an L at the end of the first integer literal:

long a = 0x0000000080000001L ^ 0x4065DE839A6F89EEL;

Otherwise it is an int literal, not a long (the leading zeroes being ignored). The ^ operator then promotes the first operand value from 0x80000001 to a long, but since the sign bit is set, the result of the promotion is 0xFFFFFFFF80000001L.



来源:https://stackoverflow.com/questions/22651465/bitwise-xor-java-long

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!