Tagged Questions

51
votes
6answers
19k views

unsigned int vs. size_t

I notice that modern C and C++ code seems to use size_t instead of int/unsigned int pretty much everywhere - from parameters for C string functions to the STL. I am curious as to the reason for this ...
20
votes
6answers
8k views

Clean code to printf size_t in C++ (or: Nearest equivalent of C99's %z in C++)

I have some C++ code that prints a size_t: size_t a; printf("%lu", a); I'd like this to compile without warnings on both 32- and 64-bit architectures. If this were C99, I could use printf("%z", ...
17
votes
3answers
616 views

Difference between size_t and std::size_t

What are the differences between size_t and std::size_t in terms of where they are declared, when they should be used and any other differentiating features?
17
votes
11answers
4k views

When to use std::size_t?

I'm just wondering should I use std::size_t for loops and stuff instead of int? For instance: #include <cstdint> int main() { for (std::size_t i = 0; i < 10; ++i) // std::size_t OK ...
15
votes
8answers
9k views

Does “std::size_t” make sense in C++?

In some code I've inherited, I see frequent use of size_t with the std namespace qualifier. For example: std::size_t n = sizeof( long ); It compiles and runs fine, of course. But it seems like ...
11
votes
3answers
254 views

variables of type size_t and ptrdiff_t

By reading on the posts online related to size_t and ptrdiff_t, I want to confirm the following: if the max size of an array is less than 1/2*(max number represent-able by size_t), I can safely use ...
10
votes
9answers
3k views

Cross platform format string for variables of type size_t?

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. ...
7
votes
7answers
199 views

What is the largest value sizeof(T) can yield?

At first one might think std::numeric_limits<size_t>::max(), but if there was an object that huge, could it still offer a one-past-the-end pointer? I guess not. Does that imply the largest value ...
6
votes
5answers
382 views

Making size_t and wchar_t portable?

To my understanding the representation of size_t and wchar_t are completely platform/compiler specific. For instance I have read that wchar_t on Linux is now usually 32bit, but on Windows it is 16bit. ...
6
votes
2answers
391 views

How to avoid problems with size_t and int types in 64bit C++ builds?

Today I made a 64bit build of my project for the first time. Basically it compiled, linked and ran ok, except for warnings complaining about incompatibility between the new, 64bit size_t type and the ...
6
votes
5answers
410 views

What should happen to the negation of a size_t (i.e. `-sizeof(struct foo)`))?

I'm dealing with some code at work that includes an expression of the form -(sizeof(struct foo)) i.e. the negation of a size_t, and I'm unclear on what the C and C++ standards require of compilers ...
5
votes
6answers
441 views

Converting a size_t into an integer (c++)

I've been trying to make a for loop that will iterate based off of the length of a network packet. In the API there exists a variable (size_t) by event.packet->dataLength. I want to iterate from 0 to ...
3
votes
3answers
119 views

Allocating large amount of memory and usage of size_t?

In my application ,I am allocating memory to store "volume data" which read from stack of bitmap images. I stored the data in a "unsigned char" and ,during allocation, first I try to allocate ...
3
votes
5answers
604 views

Should I include stddef.h or cstddef?

When I want to use size_t in C++, should I include <stddef.h> or <cstddef>? I have heard several people saying that <cstddef> was a bad idea, and it should be deprecated. Why is ...
3
votes
4answers
325 views

Compare with size_t, return int?

I'm writing some code examples from "How to Think Like a Computer Scientist in C++", and this one is about handling playing-card type objects and decks. I'm facing this situation: int ...
3
votes
2answers
1k views

casting size_t to int to declare size of char array

I am trying to declare a size of a char array and I need to use the value of the variable that is declared as a size_t to declare that size. Is there anyway I can cast the size_t variable to an int ...
3
votes
1answer
446 views

Why does converting from a size_t to an unsigned int give me a warning?

I have the code: unsigned int length = strlen(somestring); I'm compiling with the warning level on 4, and it's telling me that "conversion from size_t to unsigned int, possible loss of data" when a ...
2
votes
5answers
244 views

“Efficiency” of passing size_t as an argument

Since size_t can be 32-bit or 64-bit depending on the current system, would it be best to always pass size_t to a function as a reference or const reference so it is always 4 bytes? (if it is 8 bytes ...
2
votes
5answers
287 views

Is size_t only in C++ standard or C standard as well?

Is size_t only in C++ standard or C standard as well? I cannot find a C header in the "/usr/include" tree that defines size_t. If it is not in the C std, is GCC just doing some magic to make things ...
2
votes
6answers
6k views

size_t can not be found by g++-4.1 or others on Ubuntu 8.1

This has happened before to me, but I can't remember how I fixed it. I can't compile some programs here on a new Ubuntu install... Something is awry with my headers. I have tried g++-4.1 and 4.3 to ...
1
vote
5answers
291 views

size_t to unsigned int (from API function)

I am using the Oracle API to access a database and this API has a function readBuffer(char * buffer, unsigned int size); to which I cannot make any changes. I have a class that uses this API and the ...
1
vote
1answer
158 views

Point of size_t [closed]

Possible Duplicate: unsigned int vs. size_t When I need to store the size of something (usually stuff allocated with new), I always store it in an unsigned int. Browsing through some code, ...
1
vote
5answers
1k views

declaring the largest array using size_t

i wanted to declare a very large array. i found that the max size of an array is size_t, which is defined as UINT_MAX so i wrote the code like this int arr[UINT_MAX]; when i compile this, it says ...
1
vote
4answers
257 views

Pimpl idiom: What size_type to use if implementation is unknown?

I have a class that holds an array of elements, and I want to give it a GetSize member function. But what return type should I give that function? I'm using the pimpl idiom, and so in the header ...
0
votes
3answers
105 views

Casting/converting rom size_t to uint8_t in C++?

I'm trying to write some code that uses boost::asio's sockets to send a message from one end (the client) to another (the server). My particular goal right now is to prepend every message being sent ...
0
votes
2answers
304 views

Issue regarding size_t

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. ...