What is BitSet.cardinality() in Java?
cardinality() is an instance method of the BitSet class that is used to get the number of bits set to True.
The cardinality method is defined in the BitSet class. The BitSet class is defined in the java.util package. To import the BitSet class, use the following import statement.
import java.util.BitSet;
Syntax
public int cardinality()
Parameters
This method has no parameters.
Return value
This method returns the number of set bits.
Code
import java.util.BitSet;public class Main{public static void main(String[] args) {// Create empty BitSet objectBitSet bitSet = new BitSet();// Set the bit at index 2bitSet.set(3);// Get the number of set bits using cardinality methodSystem.out.printf("%s.cardinality() = %s" , bitSet, bitSet.cardinality());}}