美文网首页
权限Demo

权限Demo

作者: 帅大叔的简书 | 来源:发表于2017-03-29 22:38 被阅读9次

一个小demo

public class BigIntegerTest {
    public static void main(String[] args) {
        
        BigInteger num = new BigInteger("0");    
        num = num.setBit(2);    
        num = num.setBit(1);    
        System.out.println(num);    
        System.out.println(num.testBit(2));    
        System.out.println(num.testBit(1));    
        System.out.println(num.testBit(3));
    }
}

相关文章

网友评论

      本文标题:权限Demo

      本文链接:https://www.haomeiwen.com/subject/tonyottx.html