Home Help Java B Java BitSet



Java BitSet
Posted on: April 3, 2006 at 12:00 AM
In Java, the BitSet is a class that is available in the java.util package.

Java BitSet

     

In Java, the BitSet is a class that is available in the java.util package.  


The BitSet object represents a vector of bits whose size can grow according to the requirement. Every bit in the bit set has a boolean value true/false.
The bits in a BitSet are indexed by the positive integers only.  All bits in the bit set initially have the false value, by default.

User can can set or clear the individual indexed bits. 

Logical
AND, logical inclusive OR, and logical exclusive OR operations can be used by one BitSet to modify the contents of another BitSet.

The BitSet class in the java.util package provides methods to access a given bit in the array with an index:

  1. get (int index)
  2. set (int index)
  3. clear (int index)
  4. flip (int index)

 

Related Tags for Java BitSet:


More Tutorials from this section

Ask Questions?    Discuss: Java BitSet  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.