25.02.2017 Views

java_tutorial

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Java<br />

boolean equals(Object bitSet)<br />

8<br />

9<br />

10<br />

11<br />

Returns true if the invoking bit set is equivalent to the one passed in bitSet.<br />

Otherwise, the method returns false.<br />

void flip(int index)<br />

Reverses the bit specified by index.<br />

void flip(int startIndex, int endIndex)<br />

Reverses the bits from startIndex to endIndex.1.<br />

boolean get(int index)<br />

Returns the current state of the bit at the specified index.<br />

BitSet get(int startIndex, int endIndex)<br />

12<br />

13<br />

Returns a BitSet that consists of the bits from startIndex to endIndex.1. The<br />

invoking object is not changed.<br />

int hashCode( )<br />

Returns the hash code for the invoking object.<br />

boolean intersects(BitSet bitSet)<br />

14<br />

15<br />

Returns true if at least one pair of corresponding bits within the invoking object<br />

and bitSet are 1.<br />

boolean isEmpty( )<br />

Returns true if all bits in the invoking object are zero.<br />

int length( )<br />

16<br />

Returns the number of bits required to hold the contents of the invoking BitSet.<br />

This value is determined by the location of the last 1 bit.<br />

int nextClearBit(int startIndex)<br />

17<br />

Returns the index of the next cleared bit, (that is, the next zero bit), starting<br />

from the index specified by startIndex.<br />

int nextSetBit(int startIndex)<br />

18<br />

Returns the index of the next set bit (that is, the next 1 bit), starting from the<br />

index specified by startIndex. If no bit is set, .1 is returned.<br />

void or(BitSet bitSet)<br />

19<br />

ORs the contents of the invoking BitSet object with that specified by bitSet.<br />

The result is placed into the invoking object.<br />

441

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!