BitSet: get(int bitIndex) : BitSet « java.util « Java by API






BitSet: get(int bitIndex)

 
/*
 * Bit 65 is true
 */
import java.util.BitSet;

public class MainClass {
  public static void main(String[] argv) {
    BitSet bs = new BitSet();
    bs.set(65);
    System.out.println("Bit 65 is " + bs.get(65));
  }
}

           
         
  








Related examples in the same category

1.new BitSet(int size)
2.BitSet: and(BitSet anotherBitSet)
3.BitSet: andNot(BitSet set)
4.BitSet: clone()
5.BitSet: length()
6.BitSet: or(BitSet anotherBitSet)
7.BitSet: set(int bitIndex)
8.BitSet: size()
9.BitSet: xor(BitSet anotherBitSet)