Java BitSet.toLongArray()
Syntax
BitSet.toLongArray() has the following syntax.
public long[] toLongArray()
Example
In the following code shows how to use BitSet.toLongArray() method.
import java.util.Arrays;
import java.util.BitSet;
/*from w ww . j av a2 s . co m*/
public class Main {
public static void main(String[] args) {
BitSet bitset1 = new BitSet(8);
// assign values to bitset1
bitset1.set(0);
bitset1.set(1);
bitset1.set(2);
// print the sets
System.out.println("Bitset1:" + bitset1);
System.out.println(Arrays.toString(bitset1.toLongArray()));
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »