Chapter 9 of Absolute C++ discusses strings in C++, focusing on two types: C-strings and the string class. C-strings are arrays of characters ending with a null character, while the string class provides more functionality and ease of use with various member functions. The chapter also covers input/output techniques, manipulation functions, and conversions between C-strings and string objects.