Tagged Questions
3
votes
2answers
2k views
string::size_type instead of int
const std::string::size_type cols = greeting.size() + pad * 2 + 2;
Why string::size_type? int is supposed to work! it holds numbers!!!
1
vote
2answers
157 views
Is string::size_type really big enough to hold any string?
I browsed through some threads about string::size_type here and I do understand according to C++ standards that this size_type guarantees enough allocation for all string usage.
I just find that hard ...