December 2016
Beginner
800 pages
21h 23m
English
Bits can be an efficient way of storing settings and flags. The Standard Template Library (STL) supplies classes that help organize and manipulate bitwise information. This lesson introduces you to
The bitset class
The vector<bool>
bitset Classstd::bitset is the STL class designed for handling information in bits and bit flags. std::bitset is not an STL container class because it cannot resize itself. This is a utility class that is optimized for working with a sequence of bits whose length is known ...
Read now
Unlock full access