Java tutorial
import java.util.BitSet; public class Main { public static void main(String[] args) { BitSet bitset1 = BitSet.valueOf(new long[] { 1L, 2L, 3L }); // print the sets System.out.println("Bitset1:" + bitset1); } }