java的移位运算示例:左移
public class testClass {
public static void main(String args[]) {
System.out.println(8 << 2);
System.out.println(8 << 3);
System.out.println(8 << 2);
System.out.println(8 << 4);
}
}
/*
以上代码运行后,将输出以下信息
I:\E\Tmp>java testClass
32
64
32
128
*/
java的移位运算示例:右移
public class testClass {
public static void main(String args[]) {
System.out.println(18 >> 2);
System.out.println(18 >> 3);
System.out.println(18 >> 2);
System.out.println(18 >> 4);
}
}
/*
以上代码运行后,将输出以下信息
I:\E\Tmp>java testClass
4
2
4
1
*/
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。