java基础:位运算用法测试代码

//这个位运算早在VB.Net一些程序中用过,只做我初学java的参考。

public class WeiYunX {

    private class eType {
        public final static int None        = 0;
        public final static int NeiXiao     = 1;
        public final static int RiBen       = 2;
        public final static int QiTaWaiXiao = 4;
    }

    private static int e = eType.None;

    public static void main(String[] args) {
        wl("1 e type init= " + e);
        e |= eType.RiBen;
        wl("2 change 02 e= " + e);
        wl("2 and x:1=" + ((e & eType.NeiXiao) == eType.NeiXiao));
        wln();
        e |= eType.NeiXiao; //保留原有值。
        wl("3 change 03 e= " + e);
        wl("3 and x:1=" + ((e & eType.NeiXiao) == eType.NeiXiao));
        wl("3 and x:4=" + ((e & eType.QiTaWaiXiao) == eType.QiTaWaiXiao));
        wln();
        e = eType.QiTaWaiXiao; //此处重新赋值。
        wl("4 change 04 e= " + e);
        wl("4 and x:2=" + ((e & eType.RiBen) == eType.RiBen));
    }

    private static void wln() {
        wl("----------------------");
    }

    private static void wl(String msg) {
        System.out.println(msg);
    }

}

执行结果:

1 e type init= 0
2 change 02 e= 2
2 and x:1=false
----------------------
3 change 03 e= 3
3 and x:1=true
3 and x:4=false
----------------------
4 change 04 e= 4
4 and x:2=false
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值