Bitset 用法(STL)

std::bitset是STL的一個模板類,它的參數是整形的數值,使用位的方式和數組區別不大,相當於只能存一個位的數組。下面看一個例子 [cpp]  view plain copy   bitset<20> b1(5);     cout<<"the set bits in bitset<5> b1(5) is:"       << b1 <<endl;      結果是   the set bi
相關文章
相關標籤/搜索