I was wondering why this size_t is used where I can use say int type. Its said that size_t is a return type of sizeof operator. What does it mean? like if I use sizeof(int) and store what its return to an int type variable, then it also works, it's not necessary to store it in a size_t type variable. I just clearly want to know the basic concept of using size_t with a clearly understandable example.Thanks
|
|
||||
| show 3 more comments |
|
For instance, what if |
|||||||
|
|
The simplest example is pretty dated: on an old 16-bit-
the buffer The same thing can happen today if you use 32-bit |
|||
|
|
|
It is implementation defined but on 64bit systems you will find that |
|||
|
|
|
depending on what architecture you are on (16-bit, 32-bit or 64-bit) an int could be a different size. if you want a specific size I use uint16_t or uint32_t .... You can check out this thread for more information |
|||
|
|
|
You use size_t mostly for casting pointers into unsigned integers of the same size, to perform calculations on pointers as if they were integers, that would otherwise be prevented at compile time. Such code is intended to compile and build correctly in the context of different pointer sizes, e.g. 32-bit model versus 64-bit. |
|||
|
|

int_fastN_tis more likely, but still not. – Pubby Mar 10 '12 at 23:48sizeofissize_t. You seem to be confused by the fact that types are convertible in C++. For example,double x = 'a';is possible, even though the type of'a'ischar. – Kerrek SB Mar 10 '12 at 23:52