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.

link|improve this question

That's one very smart trick you've got there. +1! – ShaderOp Aug 12 '10 at 21:49
Yep, what you have is fine (you don't need the cast, by the way). – Stephen Canon Aug 12 '10 at 21:56
Out of curiosity, why would you like to know this? – Craig McQueen Aug 13 '10 at 2:31
@Craig: One possible reason could be to set that as an invalid value for a size_t type variable. For instance, std::string::npos is set to (size_t)-1 (at least in the MSVC implementation). – Prætorian Aug 13 '10 at 3:09
The way you have done is the best way. SIZE_MAX is also available on C99 but not older versions of the standard. – R.. Aug 13 '10 at 6:47
show 1 more comment
feedback

4 Answers

up vote 14 down vote accepted

A manifest constant (a macro) exists in C99 and it is called SIZE_MAX. There's no such constant in C89/90.

However, what you have in your original post is a perfectly portable method of finding the maximum value of size_t. It is guaranteed to work with any unsigned type.

link|improve this answer
+1 Excellent answer. – Stephen Canon Aug 12 '10 at 21:56
5  
@jamesdlin: The signed-to-unsigned conversion is always well-defined in C. It is required to follow the rules of typical unsigned modulo arithmetics with modulo equal to the largest value of the target unsigned type plus 1. So, in the above case you will get -1 mod (<max-value> + 1), which is always just <max-value>. – AndreyT Aug 12 '10 at 22:24
1  
@jamesdlin: §5.2.4.2.1 guarantees that -1 is representable as an int. §6.3.1.3 guarantees that it converts to a valid size_t value. – Stephen Canon Aug 12 '10 at 22:35
1  
@jamesdlin: another way to see that is that size_t is an unsigned type, so all values are valid. This can't be a trap representation since there is no such trap. – Jens Gustedt Aug 13 '10 at 6:36
1  
@jamesdlin: yes it does, unsigned types are really simple minded ;-) from "6.2.6.2 Integer types": If there are N value bits, each bit shall represent a different power of 2 between 1 and 2^N−1.. So for unsigned integer types there are really no surprises possible. – Jens Gustedt Aug 13 '10 at 12:45
show 6 more comments
feedback
#define MAZ_SZ (~(size_t)0)

or SIZE_MAX

link|improve this answer
feedback

Would something along the lines of (1 << sizeof(size_t)) - 1 work? (Untested, and possibly a language-lawyer reason this won't work...).

link|improve this answer
Won't work - sizeof(size_t) returns the size in bytes of a size_t, not related to the values that go in it. I guess you could do pow(2, CHAR_BIT*sizeof(size_t)) - 1, but that seems way too hard. – Carl Norum Aug 12 '10 at 21:51
The OP wants the maximum value that the size_t type can hold. sizeof returns the size of the variable in terms of multiples of the CHAR_BIT define in limits.h. So (assuming 8 bit char and 32 bit size_t) your solution results in 3, not 0xFFFFFFFF as the OP wants. – Prætorian Aug 12 '10 at 21:53
@Carl: Noooo! The accuracy of pow is not guaranteed by any standard, and this will generate bogus results on many platforms; even on a platform where pow is correctly rounded, if size_t is a 64-bit type and double corresponds to IEEE double (a common pair of conditions), the rounding of the subtraction will result in the value 2^64 instead of the desired 2^64 - 1. – Stephen Canon Aug 12 '10 at 21:55
@Carl and @Praetorian: I've already altered my code to include a left-shift... But agreed, this is too heavyweight. – Oli Charlesworth Aug 12 '10 at 21:58
1  
Even if you repair this, the one from the OP is much easier and portable. – Jens Gustedt Aug 12 '10 at 22:00
show 5 more comments
feedback

The size_t max_size = (size_t)-1; solution suggested by the OP is definitely the best so far, but I did figure out another out another, more convoluted, way to do this. I'm posting it just for academic curiosity.

#include <limits.h>

size_t max_size = ((((size_t)1 << (CHAR_BIT * sizeof(size_t) - 1)) - 1) << 1) + 1;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.