What's the difference between int and long in C++ since both:
sizeof(int)
... and
sizeof(long)
return 4?
|
|
|||
|
|
|
From this reference:
Also, this bit:
|
||
|
|
|
|
On platforms where they both have the same size the answer is nothing. They both represent signed 4 byte values. However you cannot depend on this being true. The size of long and int are not definitively defined by the standard. It's possible for compilers to give the types different sizes and hence break this assumption. |
||
|
|
|
|
You're on a 32-bit machine. On my 64-bit machine, They're different types - sometimes the same size as each other, sometimes not. (In the really old days, |
||||||
|
|
|
The long must be at least the same size as an int, and possibly, but not necessarily, longer. On common 32-bit systems, both int and long are 4-bytes/32-bits, and this is valid according to the C++ spec. On other systems, both int and long long may be a different size. I used to work on a platform where int was 2-bytes, and long was 4-bytes. |
||
|
|
|
|
The guarantees the standard gives you go like this: 1 == sizeof (char) <= sizeof (short) <= sizeof (int) <= sizeof (long) <= sizeof (long long) So it's perfectly valid for sizeof (int) and sizeof (long) to be equal, and many platforms choose to go with this approach. You will find some platforms where int is 32 bits, long is 64 bits, and long long is 128 bits, but it seems very common for sizeof (long) to be 4. (Note that long long is recognized in C, but normally implemented as an extension in C++.) |
||
|