active questions tagged size-t - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T12:14:30Zhttp://stackoverflow.com/feeds/tag/size-thttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1691649/can-we-change-the-size-of-sizet-in-c1Can we change the size of size_t in C?tsubasa2009-11-07T01:49:50Z2009-11-07T04:01:42Z
<p>Can we change the size of <code>size_t</code> in C?</p>
http://stackoverflow.com/questions/1546789/clean-code-to-printf-sizet-in-c-or-nearest-equivalent-of-c99s-z-in-c3Clean code to printf size_t in C++ (or: Nearest equivalent of C99's %z in C++)Justin L.2009-10-10T01:37:03Z2009-11-03T18:28:50Z
<p>I have some C++ code that prints a <code>size_t</code>:</p>
<pre><code>size_t a;
printf("%lu", a);
</code></pre>
<p>I'd like this to compile without warnings on both 32- and 64-bit architectures.</p>
<p>If this were C99, I could use <code>printf("%z", a);</code>. But AFAICT <code>%z</code> doesn't exist in any standard C++ dialect. So instead, I have to do</p>
<pre><code>printf("%lu", (unsigned long) a);
</code></pre>
<p>which is really ugly.</p>
<p>If there's no facility for printing <code>size_t</code>s built into the language, I wonder if it's possible to write a printf wrapper or somesuch such that will insert the appropriate casts on <code>size_t</code>s so as to eliminate spurious compiler warnings while still maintaining the good ones.</p>
<p>Any ideas?</p>
<p><hr>
<i>Edit</i> To clarify why I'm using printf: I have a relatively large code base that I'm cleaning up. It uses printf wrappers to do things like "write a warning, log it to a file, and possibly exit the code with an error". I might be able to muster up enough C++-foo to do this with a cout wrapper, but I'd rather not change every warn() call in the program just to get rid of some compiler warnings.</p>
http://stackoverflow.com/questions/1464174/sizet-vs-intptrt10size_t vs. intptr_tChris Lutz2009-09-23T05:59:41Z2009-09-26T18:05:55Z
<p>The C standard guarantees that <code>size_t</code> is a type that can hold any array index. This means that, logically, <code>size_t</code> should be able to hold any pointer type. I've read on some sites that I found on the Googles that this is legal and/or should always work:</p>
<pre><code>void *v = malloc(10);
size_t s = (size_t) v;
</code></pre>
<p>So then in C99, the standard introduced the <code>intptr_t</code> and <code>uintptr_t</code> types, which are signed and unsigned types guaranteed to be able to hold pointers:</p>
<pre><code>uintptr_t p = (size_t) v;
</code></pre>
<p>So what is the difference between using <code>size_t</code> and <code>uintptr_t</code>? Both are unsigned, and both should be able to hold any pointer type, so they seem functionally identical. Is there any real compelling reason to use <code>uintptr_t</code> (or better yet, a <code>void *</code>) rather than a <code>size_t</code>, other than clarity? In an opaque structure, where the field will be handled only by internal functions, is there any reason not to do this? </p>
<p>By the same token, <code>ptrdiff_t</code> has been a signed type capable of holding pointer differences, and therefore capable of holding most any pointer, so how is it distinct from <code>intptr_t</code>?</p>
<p>Aren't all of these types basically serving trivially different versions of the same function? If not, why? What can't I do with one of them that I can't do with another? If so, why did C99 add two essentially superfluous types to the language?</p>
<p>I'm willing to disregard function pointers, as they don't apply to the current problem, but feel free to mention them, as I have a sneaking suspicion they will be central to the "correct" answer.</p>
http://stackoverflow.com/questions/1217910/issue-regarding-sizet-2Issue regarding size_tNathan Campos2009-08-02T00:57:26Z2009-09-17T22:48:18Z
<p>If you go in my post history you'll see that i'm trying to develop an interpreter for a language that i'm working on. I want to use *size_t* using two different codes, but they all return nothing. </p>
<p>Here is the post of what i was trying: <a href="http://www.dreamincode.net/forums/showtopic117893.htm" rel="nofollow">http://stackoverflow.com/questions/1215688/read-something-after-a-word-in-c</a></p>
<p>When i try to use the file that i'm testing it returns me nothing. Here is the sample file(only a print function that i'm trying to develop in my language):</p>
<pre><code>print "This is a print function that i'm trying to develop in my language"
</code></pre>
<p>But remember that this is like print in Python, what the user type into the quotes(" ") is what have to be printed to all, remember that the user can choose what put into the quotes, then don't put something like a simple cout, post something that reads what is inside the quotes and print it to all. But here is the two test codes to do this, but all of they don't returns nothing to me:</p>
<pre><code>#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
using namespace std;
int main( int argc, char* argv[] )
{
// Error Messages
string extension = argv[ 1 ];
if(argc != 2)
{
cout << "Error syntax is incorrect!\nSyntax: " << argv[ 0 ] << " <file>\n";
return 0;
}
if(extension[extension.length()-3] != '.')
{
cout << "Extension not valid!" << endl;
cout << "Default extension *.tr" << endl;
return 0;
}
if(extension[extension.length()-2] != 't')
{
cout << "Extension not valid!" << endl;
cout << "Default extension *.tr" << endl;
return 0;
}
if(extension[extension.length()-1] != 'r')
{
cout << "Extension not valid!" << endl;
cout << "Default extension *.tr" << endl;
return 0;
}
// End of the error messages
ifstream file(argv[ 1 ]);
if (!file.good()) {
cout << "File " << argv[1] << " does not exist.\n";
return 0;
}
string linha;
while (!file.eof())
{
getline(file, linha);
if (linha == "print")
{
size_t idx = linha.find("\""); //find the first quote on the line
while ( idx != string::npos ) {
size_t idx_end = linha.find("\"",idx+1); //end of quote
string quotes;
quotes.assign(linha,idx,idx_end-idx+1);
// do not print the start and end " strings
cout << "quotes:" << quotes.substr(1,quotes.length()-2) << endl;
//check for another quote on the same line
idx = linha.find("\"",idx_end+1);
}
}
}
return 0;
}
</code></pre>
<p>The second:</p>
<pre><code>#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
using namespace std;
int main( int argc, char* argv[] )
{
// Error Messages
string extension = argv[ 1 ];
if(argc != 2)
{
cout << "Error syntax is incorrect!\nSyntax: " << argv[ 0 ] << " <file>\n";
return 0;
}
if(extension[extension.length()-3] != '.')
{
cout << "Extension not valid!" << endl;
cout << "Default extension *.tr" << endl;
return 0;
}
if(extension[extension.length()-2] != 't')
{
cout << "Extension not valid!" << endl;
cout << "Default extension *.tr" << endl;
return 0;
}
if(extension[extension.length()-1] != 'r')
{
cout << "Extension not valid!" << endl;
cout << "Default extension *.tr" << endl;
return 0;
}
// End of the error messages
ifstream file(argv[ 1 ]);
if (!file.good()) {
cout << "File " << argv[1] << " does not exist.\n";
return 0;
}
string linha;
while (!file.eof())
{
getline(file, linha);
if (linha == "print")
{
string code = " print \" hi \" ";
size_t beg = code.find("\"");
size_t end = code.find("\"", beg+1);
// end-beg-1 = the length of the string between ""
cout << code.substr(beg+1, end-beg-1);
}
}
return 0;
}
</code></pre>
<p>And here is what is printed in the console:</p>
<pre><code>ubuntu@ubuntu-laptop:~/Desktop/Tree$ ./tree test.tr
ubuntu@ubuntu-laptop:~/Desktop/Tree$
</code></pre>
<p>Like i said, it prints me nothing.
<strong>See my post in D.I.C.: <a href="http://www.dreamincode.net/forums/showtopic118026.htm" rel="nofollow">http://www.dreamincode.net/forums/showtopic118026.htm</a></strong></p>
<p>Thanks,
Nathan Paulino Campos</p>
http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet4Cross platform format string for variables of type size_t?twk2008-10-06T14:51:51Z2009-08-25T03:35:20Z
<p>On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on others they are 4. On glibc I have %zd, and on Win32 I can use <a href="http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx" rel="nofollow">%Id</a>. Is there an elegant way to handle this?</p>
http://stackoverflow.com/questions/1269019/what-should-happen-to-the-negation-of-a-sizet-i-e-sizeofstruct-foo5What should happen to the negation of a size_t (i.e. `-sizeof(struct foo)`))?Novelocrat2009-08-12T22:10:05Z2009-08-12T22:47:27Z
<p>I'm dealing with some code at work that includes an expression of the form </p>
<pre><code>-(sizeof(struct foo))
</code></pre>
<p>i.e. the negation of a <code>size_t</code>, and I'm unclear on what the C and C++ standards require of compilers when they see this. Specifically, from looking around here and elsewhere, <code>sizeof</code> returns an unsigned integral value of type <code>size_t</code>. I can't find any clear reference for specified behavior when negating an unsigned integer. Is there any, and if so, what is it?</p>
<p>Edit: Ok, so there are some good answers regarding arithmetic on unsigned types, but it's not clear that this is in fact such. When this negates, is it operating on an unsigned integer, or converting to a signed type and doing something with that? Is the behavior to expect from the standards "imagine it's the negative number of similar magnitude and then apply the 'overflow' rules for unsigned values"?</p>
http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-c6Does "std::size_t" make sense in C++?jwfearn2008-10-26T01:55:05Z2009-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/918787/whats-sizeofsizet-on-32-bit-vs-the-various-64-bit-data-models1What's sizeof(size_t) on 32-bit vs the various 64-bit data models?anonymous2009-05-28T01:27:06Z2009-07-22T05:07:24Z
<p>On a 64-bit system, sizeof(unsigned long) depends on the data model implemented by the system, for example, it is 4 bytes on LLP64 (Windows), 8 bytes on LP64 (Linux, etc.). What's sizeof(size_t) supposed to be? Does it vary with data model like "long" does? If so, how?</p>
<p>[1] en.wikipedia.org/wiki/64-bit#64-bit_data_models</p>
http://stackoverflow.com/questions/1107940/sizet-can-not-be-found-by-g-4-1-or-others-on-ubuntu-8-10size_t can not be found by g++-4.1 or others on Ubuntu 8.1Sean2009-07-10T06:03:52Z2009-07-18T18:49:22Z
<p>This has happened before to me, but I can't remember how I fixed it.</p>
<p>I can't compile some programs here on a new Ubuntu install... Something is awry with my headers.</p>
<p>I have tried g++-4.1 and 4.3 to no avail.</p>
<pre><code>g++ -g -frepo -DIZ_LINUX -I/usr/include/linux -I/usr/include -I/include -c qlisttest.cpp
/usr/include/libio.h:332: error: ‘size_t’ does not name a type
/usr/include/libio.h:336: error: ‘size_t’ was not declared in this scope
/usr/include/libio.h:364: error: ‘size_t’ has not been declared
/usr/include/libio.h:373: error: ‘size_t’ has not been declared
/usr/include/libio.h:493: error: ‘size_t’ does not name a type
/usr/include/stdio.h:294: error: ‘size_t’ has not been declared
...
</code></pre>
<p>the file...</p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
...
@ubuntu:~/work/zpk/src$ cat /usr/include/linux/types.h | grep size_t
typedef __kernel_size_t size_t;
typedef __kernel_ssize_t ssize_t;
</code></pre>
<p>types.h is definitely in the path, and is getting picked up. I verified by changing the file name and get an error its missing...</p>
<p>Does anyone have any ideas...? I would really appreciate the help...</p>
http://stackoverflow.com/questions/131803/unsigned-int-vs-sizet13unsigned int vs. size_tRob2008-09-25T07:00:03Z2009-04-20T15:47:23Z
<p>I notice that modern C and C++ code seems to use <code>size_t</code> instead of <code>int</code>/<code>unsigned int</code> pretty much everywhere - from parameters for C string functions to the STL. I am curious as to the reason for this and the benefits it brings.</p>
http://stackoverflow.com/questions/341303/64-bit-portability-issues164 bit portability issuesWhyamistilltyping2008-12-04T16:53:33Z2009-02-07T14:07:00Z
<p>All this originated from me poking at a compiler warning message (C4267) when attempting the following line:</p>
<pre><code>const unsigned int nSize = m_vecSomeVec.size();
</code></pre>
<p><code>size()</code> returns a size_t which although typedef'd to unsigned int, is not actually a unsigned int. This I believe have to do with 64 bit portability issues, however can someone explain it a bit better for me? ( I don't just want to disable 64bit warnings.)</p>
http://stackoverflow.com/questions/206405/overflows-in-sizet-additions4overflows in size_t additionsNils Pipenbrinck2008-10-15T20:48:15Z2008-10-15T21:36:21Z
<p>I like to have my code warning free for VS.NET and GCC, and I like to have my code 64 bit ready.</p>
<p>Today I wrote a little module that deals with in memory buffers and provides access to the data via a file-style interface (e.g. you can read bytes, write bytes, seek around ect.).</p>
<p>As the data-type for current read position and size I used size_t since that seemes to be the most natural choice. I get around the warnings and it ought to work in 64 bit as well. </p>
<p>Just in case: My structure looks like this:</p>
<pre><code>typedef struct
{
unsigned char * m_Data;
size_t m_CurrentReadPosition;
size_t m_DataSize;
} MyMemoryFile;
</code></pre>
<p>The sign-ness (is this the correct word btw?) of size_t seems not to be defined in practice. A Google code-search proved that.</p>
<p>Now I'm in a dilemma: I want to check additions with size_t for overflows because I have to deal with user supplied data and third party libraries will use my code. However, for the overflow check I have to know the sign-ness. It makes a huge difference in the implementation. </p>
<p>So - how the heck should I write such a code in a platform and compiler independent way? </p>
<p>Can I check the sign-ness of size_t at run or compile-time? That would solve my problem. Or maybe size_t wasn't the best idea at the first place?</p>
<p>Any ideas?</p>
<p><strong>EDIT</strong>: I'm looking for a solution for the C-language!</p>