当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java BitSet andNot()用法及代码示例


BitSet类andNot()方法

  • andNot() 方法在 java.util 包中可用。
  • andNot() 方法用于返回此 Bitset 中其对应位未在给定 Bitset 中设置的所有位。
  • andNot() 方法是一个非静态方法,因此可以通过类对象访问它,如果我们尝试使用类名访问该方法,则会出现错误。
  • andNot() 方法在清除此 Bitset 中的位时不引发异常,其对应位出现在给定的 Bitset 中。

用法:

    public void andNot(BitSet bs);

参数:

  • BitSet bs– 表示用于屏蔽此 Bitset 的 Bitset。

返回值:

这个方法的返回类型是void,它什么都不返回。

例:

// Java program to demonstrate the example 
// of void andNot(BitSet bs) method of BitSet.

import java.util.*;

public class AndNotOfBitSet {
    public static void main(String[] args) {
        // create an object of two BitSet
        BitSet bs1 = new BitSet(10);
        BitSet bs2 = new BitSet(10);

        // By using set() method is to set
        // the values in BitSet 1 
        bs1.set(10);
        bs1.set(20);
        bs1.set(30);
        bs1.set(40);
        bs1.set(50);

        // By using set() method is to set
        // the values in BitSet 2 
        bs2.set(60);
        bs2.set(70);
        bs2.set(50);
        bs2.set(40);
        bs2.set(30);

        // Display Bitset1 and BitSet2
        System.out.println("bs1:" + bs1);
        System.out.println("bs2:" + bs2);

        // By using andNot(BitSet) method is to returns
        // all the bits that does not match the bits of given
        // BitSet

        bs1.andNot(bs2);

        // Display BitSet 1
        System.out.println("bs1.andNot(bs2):" + bs1);
    }
}

输出

bs1:{10, 20, 30, 40, 50}
bs2:{30, 40, 50, 60, 70}
bs1.andNot(bs2):{10, 20}


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java BitSet andNot() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。