码迷,mamicode.com
首页 > 其他好文 > 详细

位数计算

时间:2019-02-19 18:50:14      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:color   计算   nbsp   col   初始化   class   tag   amp   还原   

        // 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);
        }

 

位数计算

标签:color   计算   nbsp   col   初始化   class   tag   amp   还原   

原文地址:https://www.cnblogs.com/yyyyfan/p/10402845.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!