首页 > 代码库 > 待解:一元非运算符
待解:一元非运算符
1 // Demonstrate the bitwise NOT. 2 class NotDemo { 3 public static void main(String[] args) { 4 byte b = -34; 5 6 for(int t = 128; t > 0; t = t/2) { 7 if((b & t) != 0) System.out.print("1 "); 8 else System.out.print("0 "); 9 }10 System.out.println();11 12 // reverse all bits13 b = (byte) ~b;14 15 for(int t = 128; t > 0; t = t/2) {16 if((b & t) != 0) System.out.print("1 ");17 else System.out.print("0 ");18 }19 }20 }
执行结果:
1 1 0 1 1 1 1 0
0 0 1 0 0 0 0 1
待解:一元非运算符
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。