the index of the highest set bit in the BitSet plus one.
这句怎么理解?

解决方案 »

  1.   

    the highest set bit 是什么意思?set bit
      

  2.   

    为什么要看java API文档,英文 版的真是麻烦,要看到什么程度阿?
      

  3.   

    the highest set bit in the BitSet
    注意了:BitSet是一个集合,集合是什么东西呢?集合是有很多的element组成的。
    所以呢set bit 就是一个element元素。
    so the "result of Returns the "logical size" of this BitSet:" should be the total number of the elements, that is to say the total number of set bits!Good luck!