Does "std::size_t" make sense in C++? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T02:50:50Z http://stackoverflow.com/feeds/question/237370 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-c 6 Does "std::size_t" make sense in C++? jwfearn 2008-10-26T01:55:05Z 2009-08-06T10:23:48Z <p>In some code I've inherited, I see frequent use of <code>size_t</code> with the <code>std</code> namespace qualifier. For example:</p> <pre><code>std::size_t n = sizeof( long ); </code></pre> <p>It compiles and runs fine, of course. But it seems like bad practice to me (perhaps carried over from C?).</p> <p>Isn't it true that <code>size_t</code> is built into C++ and therefore in the global namespace? Is a header file include needed to use <code>size_t</code> in C++?</p> <p>Another way to ask this question is, would the following program (with <em>no</em> includes) be expected to <em>compile</em> on all C++ compilers?</p> <pre><code>size_t foo() { return sizeof( long ); } </code></pre> http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-c/237374#237374 2 Answer by Brian R. Bondy for Does "std::size_t" make sense in C++? Brian R. Bondy 2008-10-26T01:57:14Z 2008-10-26T02:42:35Z <p>Sometimes other libraries will define their own size_t. For example boost. std::size_t specifies that you definitely want the c++ standard one. </p> <p>size_t is a c++ standard type and it is defined within the namespace std.</p> http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-c/237395#237395 6 Answer by ypnos for Does "std::size_t" make sense in C++? ypnos 2008-10-26T02:18:27Z 2008-10-26T02:30:17Z <p>size_t is not built into C++. And it is not defined by default. This one doesn't compile with GCC:</p> <pre><code>int main(int argc, char** argv) { size_t size; } </code></pre> <p>That said, size_t is part of POSIX and if you use only basic things like <code>&lt;cstdlib&gt;</code>, you will likely end up having it defined.</p> <p>You could argue that std::size_t is the C++ equivalent of size_t. As Brian pointed out, std:: is used as namespace to avoid setting global variables which don't fit everybody. It's just like std::string, which could also have been defined in the root namespace.</p> http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-c/237398#237398 18 Answer by Don Wakefield for Does "std::size_t" make sense in C++? Don Wakefield 2008-10-26T02:21:18Z 2008-10-26T02:21:18Z <p>Section 17.4.1.2 of the C++ standard, paragraph 4, states that:</p> <p>"In the C++ Standard Library, however, the declarations and definitions (except for names which are defined as macros in C) are within namespace scope (3.3.5) of the namespace std."</p> <p>This includes items found in headers of the pattern <em>cname</em>, including <em>cstddef</em>, which defines size_t.</p> <p>So std::size_t is in fact correct.</p> http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-c/237882#237882 3 Answer by fizzer for Does "std::size_t" make sense in C++? fizzer 2008-10-26T11:12:02Z 2008-10-26T11:12:02Z <p>You can get <code>size_t</code> in the global namespace by including, for example, <code>&lt;stddef.h&gt;</code> instead of <code>&lt;cstddef&gt;</code>. I can't see any obvious benefit, and the feature is deprecated.</p> http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-c/283023#283023 2 Answer by Johannes Schaub - litb for Does "std::size_t" make sense in C++? Johannes Schaub - litb 2008-11-12T04:18:55Z 2008-11-12T04:18:55Z <p>There seems to be confusion among the stackoverflow crowd concerning this</p> <p><code>::size_t</code> is defined in the backward compatibility header <code>stddef.h</code> . It's been part of <code>ANSI/ISO C</code> and <code>ISO C++</code> since their very beginning. Every C++ implementation has to ship with <code>stddef.h</code> (compatibility) and <code>cstddef</code> where only the latter defines <code>std::size_t</code> and not necessarily <code>::size_t</code>. See Annex D of the C++ Standard.</p> http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-c/754760#754760 1 Answer by Martin for Does "std::size_t" make sense in C++? Martin 2009-04-16T04:30:09Z 2009-04-16T04:42:07Z <p>The GNU compiler headers contain something like</p> <pre>typedef long int __PTRDIFF_TYPE__; typedef unsigned long int __SIZE_TYPE__;</pre> Then stddef.h constains something like <pre>typedef __PTRDIFF_TYPE__ ptrdiff_t; typedef __SIZE_TYPE__ size_t;</pre> And finally the cstddef file contains something like <pre> #include &lt;stddef.h&gt; namespace std { using ::ptrdiff_t; using ::size_t; } </pre> <p>I think that should make it clear. As long as you include &lt;cstddef&gt; you can use either size_t or std::size_t because size_t was typedefed outside the std namespace and was then included. Effectively you have</p> <pre>typedef long int ptrdiff_t; typedef unsigned long int size_t; namespace std { using ::ptrdiff_t; using ::size_t; } </pre> http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-c/850430#850430 1 Answer by Michael S for Does "std::size_t" make sense in C++? Michael S 2009-05-11T22:48:22Z 2009-05-11T22:48:22Z <p>I think the clarifications are clear enough. The <code>std::size_t</code> makes good sense in C++ and <code>::size_t</code> make (at least) good sense in C.</p> <p>However a question remain. Namely whether it is safe to assume that <code>::size_t</code> and <code>std::size_t</code> are compatible?</p> <p>From a pure typesafe perspective they are not necessarily identical unless it is defined somewhere that they must be identical.</p> <p>I think many are using something a la:</p> <pre><code>---- // a.hpp #include &lt;string&gt; void Foo( const std::string &amp; name, size_t value ); ----- // a.cpp #include "a.hpp" using namespace std; void Foo( const string &amp; name, size_t value ) { ... } </code></pre> <p>So in the header you defintely use the <code>::size_t</code> while in the source file you'll use <code>std::size_t</code>. So they must be compatible, right? Otherwise you'll get a compiler error.</p> <p>/Michael S.</p> http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-c/1238084#1238084 1 Answer by mloskot for Does "std::size_t" make sense in C++? mloskot 2009-08-06T10:23:48Z 2009-08-06T10:23:48Z <pre><code>std::size_t n = sizeof( long ); </code></pre> <p>Actually, you haven't asked what specifically seems to be a bad practice int the above. Use of size_t, qualification with std namespace,... </p> <p>As the C++ Standard says (18.1), size_t is a type defined in the standard header . I'd suggest to drop any thoughts and impressions about possible inheritance from C language. C++ is a separate and different language and it's better to consider it as such. It has its own standard library and all elements of C++ Standard Library are defined within namespace std. However, it is possible to use elements of C Standard Library in C++ program.</p> <p>I'd consider including as a dirty hack. The C++ Standard states that the content of headers is the same or based on corresponding headers from the C Standard Library, but in number of cases, changes have been applied. In other words, it's not a direct copy &amp; paste of C headers into C++ headers. </p> <p>size_t is not a built-in type in C++. It is a type defined to specify what kind of integral type is used as a return type of sizeof() operator, because an actual return type of sizeof() is implementation defined, so the C++ Standard unifies by defining size_t.</p> <blockquote> <p>would the following program (with no includes) be expected to compile on all C++ compilers?</p> <pre><code>size_t foo() { return sizeof( long ); } </code></pre> </blockquote> <p>The C++ Standard says (1.4):</p> <p><em>The names defined in the library have namespace scope (7.3). A C ++ translation unit (2.1) obtains access to these names by including the appropriate standard library header (16.2).</em></p> <p>The size_t is a name defined within std namespace, so every program that uses this name should include corresponding header, in this case.</p> <p>Next, the 3.7.3 chapter says:</p> <p>*However, referring to std, std::bad_alloc, and std::size_t is ill-formed unless the name has been declared by including the appropriate header.*</p> <p>Given that, program using size_t but not including header is ill-formed.</p>