I'd like to know the maximum value of size_t on the system my program is running. My first instinct was to use negative 1, like so:
size_t max_size = (size_t)-1;
But I'm guessing there's a better way, or a constant defined somewhere.
|
show 1 more comment
feedback
|
|
A manifest constant (a macro) exists in C99 and it is called However, what you have in your original post is a perfectly portable method of finding the maximum value of | |||||||||||||||||||
feedback
|
|
Would something along the lines of | |||||||||||||
feedback
|
|
The
| |||
|
feedback
|
size_ttype variable. For instance,std::string::nposis set to(size_t)-1(at least in the MSVC implementation). – Prætorian Aug 13 '10 at 3:09SIZE_MAXis also available on C99 but not older versions of the standard. – R.. Aug 13 '10 at 6:47