摘要:
public class Demo { public static void main(String[] args){ //获取三个数的最大值 int n1 = 12; int n2 = 30; int n3 = -43; int max1=(n1>n2)?n1:n2; int max2=(max1 阅读全文
摘要:
class BitTest { public static void main(String[] args) { int m = 12; int n = 5; System.out.println("m & n :" + (m & n)); System.out.println("m | n :" 阅读全文
摘要:
结论:1. 位运算符操作的都是整型的数据2. << :在一定范围内,每向左移1位,相当于 * 2 >> :在一定范围内,每向右移1位,相当于 / 2 面试题:最高效方式的计算2 * 8 ? 2 << 3 或 8 << 1 2<<3 每向左移3位,相当于2*2*2*2=16 8<<1 每向左移3位,相 阅读全文
摘要:
class Test1 { public static void main(String[] args){ int num=129; int bai=num/100; int shi=num%100/10;//129%100=29 29/10=2 int ge=num%10; System.out. 阅读全文