English 中文(简体)
Java.util - BitSet
  • 时间:2024-09-17

Java BitSet Class


Previous Page Next Page  

Introduction

The Java BitSet class implements a vector of bits that grows as needed.Following are the important points about BitSet −

    A BitSet is not safe for multithreaded use without external synchronization.

    All bits in the set initially have the value false.

    Passing a null parameter to any of the methods in a BitSet will result in a NullPointerException.

Class declaration

Following is the declaration for java.util.BitSet class −

pubpc class BitSet
   extends Object
   implements Cloneable, Seriapzable

Class constructors

Sr.No.

Constructor & Description

1

BitSet()

This constructor creates a new bit set.

2

BitSet(int nbits)

This constructor creates a bit set whose initial size is large enough to exppcitly represent bits with indices in the range 0 through nbits-1.

Class methods

Sr.No.

Method & Description

1

void and(BitSet set)

This method performs a logical AND of this target bit set with the argument bit set.

2

void andNot(BitSet set)

This method clears all of the bits in this BitSet whose corresponding bit is set in the specified BitSet.

3

int cardinapty()

This method returns the number of bits set to true in this BitSet.

4

void clear()

This method sets all of the bits in this BitSet to false.

5

Object clone()

This method clones this BitSet and produces a new BitSet that is equal to it.

6

boolean equals(Object obj)

This method compares this object against the specified object.

7

void fpp(int bitIndex)

This method sets the bit at the specified index to the complement of its current value.

8

boolean get(int bitIndex)

This method returns the value of the bit with the specified index.

9

int hashCode()

This method returns the value of the bit with the specified index.

10

boolean intersects(BitSet set)

This method returns true if the specified BitSet has any bits set to true that are also set to true in this BitSet.

11

boolean isEmpty()

This method returns true if this BitSet contains no bits that are set to true.

12

int length()

This method returns the "logical size" of this BitSet: the index of the highest set bit in the BitSet plus one.

13

int nextClearBit(int fromIndex)

This method returns the index of the first bit that is set to false that occurs on or after the specified starting index.

14

int nextSetBit(int fromIndex)

This method returns the index of the first bit that is set to true that occurs on or after the specified starting index.

15

void or(BitSet set)

This method performs a logical OR of this bit set with the bit set argument.

16

int previousClearBit(int fromIndex)

This method returns the index of the first bit that is set to false that occurs on or before the specified starting index.

17

int previousSetBit(int fromIndex)

This method returns the index of the first bit that is set to true that occurs on or after the specified starting index.

18

void set(int bitIndex)

This method sets the bit at the specified index to true.

19

int size()

This method returns the number of bits of space actually in use by this BitSet to represent bit values.

20

IntStream stream()

This method returns a stream of indices for which this BitSet contains a bit in the set state.

21

byte[] toByteArray()

This method returns a new bit set containing all the bits in the given byte array.

22

long[] toLongArray()

This method returns a new long array containing all the bits in this bit set.

23

String toString()

This method returns a string representation of this bit set.

24

static BitSet valueOf​(byte[] bytes)

This method returns a new bit set containing all the bits in the given byte array.

25

void xor(BitSet set)

This method performs a logical XOR of this bit set with the bit set argument.

Methods inherited

This class inherits methods from the following classes −

    java.util.Object

Advertisements