What are the limitations of the STL string?

What are the string restrictions for the standard C ++ template library?

+4
c ++ string
source share
1 answer
#include <iostream> #include <string> int main() { std::cout << std::string().max_size() << std::endl; return 0; } 
+18
source share

All Articles