本文介绍了如何计算BitSet对象中的总位数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想计算BitSet
对象中的位数.方法length
返回BitSet
的逻辑大小":BitSet
中最高设置位的索引加1,而方法cardinality
将给出对象中设置为1的总位数
I want to calculate the total number of bits in a BitSet
object. The method length
returns the "logical size" of the BitSet
: the index of the highest set bit in the BitSet
plus one, while method cardinality
will give the total number of bits set to 1 in the object.
我想计算包括0和1在内的总位数.我该怎么办?
I want to calculate the total number of bits including both 0s and 1s. How do I do that?
推荐答案
BitSet.size()
?.....
How about BitSet.size()
?.....
这篇关于如何计算BitSet对象中的总位数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!