This document discusses strings in C++. It explains that a string is a class that can be thought of as a new type of variable to store text. Strings store characters in an array and functions like length() can return the size. Strings can be concatenated using + or assigned using =. The getline() function reads a whole line of input including whitespace. Dot functions operate on specific string objects.