vote up 6 vote down star

As title: is size_t always unsigned, i.e. for size_t x, is x always >= 0 ?

flag

80% accept rate
2  
Some quote from a standards document for all the assertions below would be nice. – Neil Butterworth Jul 6 at 21:01
1  
It's not about the size, it's how you use it :) – Magnus Skog Jul 6 at 21:05
1  
There is "ssize_t" for "a signed size_t" :) – Johannes Schaub - litb Jul 6 at 21:14
thanks, litb, but I'm happy with it being unsigned. One thing less to test (in some cases) – peterchen Jul 6 at 21:41
So is ptrdiff_t deprecated? – finnw Jul 6 at 23:33

8 Answers

vote up 9 vote down check

Yes. It's usually defined as

typedef unsigned int size_t;

Reference:

C++ Standard Section 18.1 defines size_t is in <cstddef> which is described in C Standard as <stddef.h>.
C Standard Section 4.1.5 defines size_t as an unsigned integral type of the result of the sizeof operator

link|flag
2  
www.cplusplus.com is not the c++ standard – Neil Butterworth Jul 6 at 21:07
@Neil: I know. It was the first thing I found. I don't have C++ standard at hand so I'm downloading it (my connection is damn slow). In the meantime, I put something other than myself. – Mehrdad Afshari Jul 6 at 21:08
Well, I do have the C++ standard to hand, but can't find it, possibly because it's actually defined in the C (not C99) standard. I am hoping someone will track it down, because I think its an interesting question! – Neil Butterworth Jul 6 at 21:12
2  
Thanks mehrdad for hunting down the reference – peterchen Jul 6 at 21:38
1  
please note that size_t will normaly be 64 bit on 64 bit systems, whereas int might still be 32 bit; such things are highly compiler specific – Christoph Jul 6 at 23:27
show 7 more comments
vote up 14 vote down

According to the 1999 ISO C standard (C99), size_t is an unsigned integer type of at least 16 bit (see sections 7.17 and 7.18.3).

The standard also recommends that size_t shouldn't have an integer conversion rank greater than long if possible, ie casting size_t to unsigned long is unproblematic if the recommendation is followed.

The 1989 ANSI C standard (ANSI C) doesn't mention a minimal size or recommended conversion rank.

The 1998 ISO C++ standard (C++98) (as well as the current draft for C++0x) refers to the C standard. Section 18.1 reads:

The contents are the same as the Standard C library header <stddef.h> [...]

According to section 1.2, this means the library as defined by the 1990 ISO C standard (C90), including its first amendment from 1995 (C95):

The library described in clause 7 of ISO/IEC 9899:1990 and clause 7 of ISO/IEC 9899/Amd.1:1995 is hereinafter called the Standard C Library.

The parts regarding size_t should be inherited from ANSI C: Frontmatter and section numbering aside, the standards for C90 and ANSI C are identical. I'd need a copy of the normative amendment to be sure that there weren't any relevant changes to stddef.h, but I doubt it. The minimal size seems to be introduced with stdint.h, ie C99.

Please also consider the following quote from section 1.2 of C++98:

All standards are subject to revision, and parties to agreements based on this International Standard are encouraged to investigate the possibility of applying the most recent editions of the standards indicated below.

link|flag
Unfortunately, the question isn't about C99 but C++. – Neil Butterworth Jul 6 at 21:08
4  
@Neil, well he has to take the C Standard, because the C++ Standard delegates to it :) It doesn't itself define size_t :) – Johannes Schaub - litb Jul 6 at 21:11
2  
Yes, but the C++ standard doesn't reference the C99 standard. – Neil Butterworth Jul 6 at 21:13
Somehow i believed the C89/C95 Standard required size_t to be at least 16 bit. But it looks like only C99 has that requirement and that it's at least 65535. – Johannes Schaub - litb Jul 6 at 21:41
@Neil: Actually, the C++ standard never mentions to which version of ISO C it refers; and ISO/IEC 9899:1990 is officially withdrawn – Christoph Jul 6 at 21:53
show 2 more comments
vote up 10 vote down

Yes, size_t is guaranteed to be an unsigned type.

link|flag
vote up 3 vote down

According to the standard it is unsigned, however I recall that some older implementations used a signed type for the typedef.

From an older GCC doc:

There is a potential problem with the size_t type and versions of GCC prior to release 2.4. ANSI C requires that size_t always be an unsigned type. For compatibility with existing systems' header files, GCC defines size_t in stddef.h to be whatever type the system's sys/types.h defines it to be. Most Unix systems that define size_t in sys/types.h, define it to be a signed type. Some code in the library depends on size_t being an unsigned type, and will not work correctly if it is signed

I'm not sure how important it would be to guard against that. My code assumes it's unsigned.

link|flag
I think everyone knows it's probably unsigned - but unless someone can quote a relevant standards document, we'll never know for sure. – Neil Butterworth Jul 6 at 21:10
I don't have the standard document handy at the moment (though I'm confident that all the relevant standards, C90, C99 and C++98 and beyond require it to be unsigned). However, I just wanted to point out that regardless of the standard, there are potentially important exceptions where size_t is a signed type. – Michael Burr Jul 6 at 21:14
vote up 1 vote down

It frickin' better be!

link|flag
vote up 1 vote down

The size_t should follow the same definition as the C standard, and in several places in the C++ standard it implies it's unsigned natura (particularly in the allocator template argument definitions).

On the C++ Standard, section 18.1 (ISO/IEC 14882 - First edition 1998-01-01):

Table 15 lists as defined types: ptrdiff_t and size_t

3 The contents are the same as the Standard C library header , with the following changes: 4 The macro NULL is an implementation-defined C++ null pointer constant in this International Standard (4.10).

The macro offsetof accepts a restricted set of type arguments in this International Standard. type shall be a POD structure or a POD union (clause 9). The result of applying the offsetof macro to a field that is a static data member or a function member is undefined. SEE ALSO: subclause 5.3.3, Sizeof, subclause 5.7, Additive operators, subclause 12.5, Free store, and ISO C subclause 7.1.6.

link|flag
vote up 0 vote down

It is always unsigned int

would it make sense to have a negative size?

link|flag
What is ssize_t then? – stepancheg Jul 6 at 21:10
It does not make sense for a size to be negative, but it might make sense to store it in a variable of signed type. What if you want the (signed) difference between two size_t values? – finnw Jul 6 at 23:32
vote up 0 vote down

On mature (?) reflection - quotes from the C99 Standard are probably sufficient. Despite some of the weirdo things C99 does, I don't believe they would change the type of size_t. So apologies to anyone who I may have forced to pore through ancient C standards documents!

link|flag
One of the weird things C99 introduced are implementation defined extended integral types. So it happens an implementation may have a size_t that doesn't even fit into unsigned long long :) – Johannes Schaub - litb Jul 6 at 21:39
Neil: It was fun though ;) BTW, as litb pointed out in a comment C89 doesn't restrict the size of size_t. In fact, what I wrote in my answer is the only thing it says about size_t so your concern was completely relevant. – Mehrdad Afshari Jul 6 at 21:50

Your Answer

Get an OpenID
or

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