标签:span oid 用法 image bsp ati 结果 int hello
>>,>>>,<<的用法:
* <<:左移 左边最高位丢弃,右边补齐0
* >>:右移 最高位是0,左边补齐0;最高为是1,左边补齐1
* >>>:无符号右移 无论最高位是0还是1,左边补齐0
代码:
class Hello2 { public static void main(String[] args) { System.out.println(2 << 3); } }
结果:
标签:span oid 用法 image bsp ati 结果 int hello
原文地址:https://www.cnblogs.com/Wangzui1127/p/11144602.html