C++语言之bitset函数时间:2021-11-23 19:27:36初始化 bitset 对象的方法 : bitset<n> b; b 有 n 位,每位都 0 bitset<n> b(u); b 是 unsigned long 型 u 的一个副本 bitset<n> b(s); b 是 string 对象 s 中含有的位串的副本 bitset<n> b(s, pos, n); b 是 s 中从位置 pos 开始的&nbps;n 个位的副 本。