The Standard Template Library
The String Class
Containers
Container Adaptors
Iterators
C++ has a small core that relies significantly on libraries for support
So far, we have used iostream
and cstring
extensively
There are also libraries for: types (including strings), containers, algorithms, multithreading, etc.
Most elements of this library are defined in the std
namespace
Today we will cover the string
library as well as libraries that implement containers and iterators
The string library implements a string class
This class allows for an easy storage and manipulation of strings of characters. It provides methods to:
→ Assign a sequence of characters into a string
→ Compare two strings
→ Get the size of a string
→ Convert a string into a char array
In C++, always use double quotes for strings and single quotes for characters
'q'
is a char, whereas "q"
is a string
There is no limit on the number of characters of a string. The library manages the memory for you