位数计算
Posted yyyyfan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了位数计算相关的知识,希望对你有一定的参考价值。
// 1000 0000 short CHANGE_TAG = 0x80; int i = 0; // 将标志位置1 i |= CHANGE_TAG; // 初始化或者还原标志位0 // i &= ~CHANGE_TAG; // 判断第8位 // if((i & CHANGE_TAG) == CHANGE_TAG){ if((i >> 7 & 0x1) == 1){ System.out.println(1); }else { System.out.println(0); }
以上是关于位数计算的主要内容,如果未能解决你的问题,请参考以下文章