Given this code:
int x = 20000;
int y = 20000;
int z = 40000;
// Why is it printing WTF? Isn't 40,000 > 32,767?
if ((x + y) == z) Console.WriteLine("WTF?");
And knowing an int can hold −32,768 to +32,767. Why doesn't this cause an overflow?
|
|
Given this code:
And knowing an int can hold −32,768 to +32,767. Why doesn't this cause an overflow?
|
||||||||||||||||||
|
|
|
In C#, the Even if you use
You can find information about |
||||
|
|
|
http://msdn.microsoft.com/en-us/library/5kzh1b5w.aspx Type: int Range: -2,147,483,648 to 2,147,483,647 |
||||||
|
|
|
While everyone is correct in saying that an "int" type on a 32 bit machine is most likely 2^32, there is a glaring flaw in your methodology. Let's assume that int was 16 bit. You're assigning a value that will overflow z, so z itself is overflowed. When you calculate x+y you're also overflowing the int type, it's very likely that both cases will overflow to the same value, meaning you'd hit your equality regardless(this is probably compiler dependent, I'm not quite sure whether x+y will be promoted). The correct way to do your experiment would be for z to have a larger data type than x and y. For example(Sorry for plain C, I'm not much of C# person. Hopefully it illustrated the methodology, however.)
Comparing sum and z is important as comparing x+y and z may still come out fine depending on how the compiler handles promotion. |
|||
|
|
|
In C#, an Int is 4 bytes. So it maxes out at 2^31 or 2,147,483,648. If you want a 2 byte integer, use a short instead of an int. |
||
|
|
|
|
Because an int in .NET is a signed 32 bit number with a range of -2,147,483,648 to 2,147,483,647. Reference : http://msdn.microsoft.com/en-us/library/5kzh1b5w(VS.80).aspx |
|||
|
|
|
|
Because ints are 32-bit, holding values up to ±2GB. |
||
|
|
|
|
An int's size is 4 byte so it can hold at least 2^31 which is around 2 billion. |
||
|
|
|
|
The int keyword maps to the .NET Framework Int32 type, which can hold integers in the range from -2,147,483,648 to 2,147,483,647. |
||
|
|
|
|
in C# int (System.Int32) is of 32 bits which can happily store this value. |
||
|
|
|
|
you are given to print the result as "WTF?" .Then how should it display other value. Int means int32 its range is –2147483648 to 2147483647 you are given the range of int16 :–32768 to 32767 This is the reason it is not throwing any error |
||
|
|
|
|
First of all your code is in the range for int... However if it were not in the range then it wont complain either... coz you are never assigning a value back to any variable after doing X+Y in your if check... Suppose if you were doing X * Y then it'll be calculated and the result would be a long value then the value from variable Z is taken and promoted to a long then both would be compared... Remember the casting from a lower range primitive to upper range primitive value is implicit.
|
|||
|
|
|
|
All the above is true, however, it's important to know, that if you assign a nubmer grater than 2^32, it will not compile! |
||
|
|