Bitset Reference
问题 From http://www.cplusplus.com/reference/stl/bitset/: Because no such small elemental type exists in most C++ environments, the individual elements are accessed as special references which mimic bool elements. How, exactly, does this bit reference work? The only way I could think of would be to use a static array of char s, but then each instance would need to store its index in the array. Since each reference instance would have at least the size of a size_t , that would destroy the