If I have an integer that I'd like to perform bit manipulation on, how can I load it into a java.util.BitSet? How can I convert it back to an int or long? I'm not so concerned about the size of the BitSet -- it will always be 32 or 64 bits long. I'd just like to use the set(), clear(), nextSetBit(), and nextClearBit() methods rather than bitwise operators, but I can't find an easy way to initialize a bit set with a numeric type.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The following code creates a bit set from a long value and vice versa:
EDITED: Now both directions, @leftbrain: of cause, you are right |
|||||||||||
|
|
Java 7 has If you are stuck with Java 6 or earlier, you can use |
||||
|
|
|
Isn't the |
|||||
|