I can never remember that number. I need a memory rule.
|
|
|||||
|
|
|
It's 2,147,483,647. Easiest way to memorize it is via a tattoo. |
||||||||
|
|
|
Int32 means you have 32 bits available to store your number. The highest bit is the sign-bit, this indicates if the number is positive or negative. So you have 2^31 bits for positive and negative numbers. With zero being a positive number you get the logical range of (mentioned before) +2147483647 to -2147483648 If you think that is to small, use Int64: +9223372036854775807 to -9223372036854775808 And why the hell you want to remember this number? To use in your code? You should always use Int32.MaxValue or Int32.MinValue in your code since these are static values (within the .net core) and thus faster in use than creating a new int with code. My statement: if know this number by memory.. you're just showing off! |
||||
|
|
|
c++ : |
||
|
|
|
|
2147483647 To memorize you can always use the Mnemonic major system "network review image egg" should do the trick. |
||
|
|
|
|
What do you mean? It should be easy enough to remember that it is 2^32. If you want a rule to memorize the value of that number, a handy rule of thumb is for converting between binary and decimal in general: 2^10 ~ 1000 which means 2^20 ~ 1,000,000 and 2^30 ~ 1,000,000,000 Double that (2^31) is rounghly 2 billion, and doubling that again (2^32) is 4 billion. It's an easy way to get a rough estimate of any binary number. 10 zeroes in binary becomes 3 zeroes in decimal. |
||
|
|
|
Int32.MaxValue |
||
|
|
|
|
with Groovy on the path:
(Groovy is extremely useful for quick reference, within a Java context) |
||
|
|
|
|
Just remember that 2^(10*x) is approximately 10^(3*x) - you're probably already used to this with kilobytes/kibibytes etc. That is:
Since an int uses 31 bits (+ ~1 bit for the sign), just double 2^30 to get approximately 2 billion. For an unsigned int using 32 bits, double again for 4 billion. The error factor gets higher the larger you go of course, but you don't need the exact value memorised (If you need it, you should be using a pre-defined constant for it anyway). The approximate value is good enough for noticing when something might be a dangerously close to overflowing. |
||
|
|
|
2GB (is there a minimum length for answers?) |
||
|
|
|
|
So, 2^31 (signed int max) is 2^30 (about 1 billion) times 2^1 (2), or about 2 billion. And 2^32 is 2^30 * 2^2 or about 4 billion. This method of approximation is accurate enough even out to around 2^64 (where the error grows to about 15%). If you need an exact answer then you should pull up a calculator. Handy word-aligned capacity approximations:
|
|||
|
|
|
Just take any decent calculator and type in "7FFFFFFF" in hex mode, then switch to decimal. 2147483647. |
||
|
|
|
Rather than think of it as one big number, try breaking it down and looking for associated ideas eg:
The above applies to the biggest negative number; positive is that minus one. Maybe the above breakdown will be no more memorable for you (it's hardly exciting is it!), but hopefully you can come up with some ideas that are! |
||||||
|
|
|
The value works out to 2,147,483,647. That's (2^32-1)/2 because Int32 has 32 bits and half of it's values are negative. Or, if you live in the world of .NET, don't bother remembering the number, just use Int32.MaxValue. |
||
|
|
|
It's 10 digits, so pretend it's a phone number (assuming you're in the US). 214-748-3647. I don't recommend calling it. |
||||
|
|
|
The most correct answer I can think of is |
||
|
|
|
Assuming .NET -
|
||
|
|
|
|
Well it has 32Bits and hence can store 2^32 different values. Half of those are negative. Do the maths. That's a simple memory rule if you have a good calculator. :) The solution btw is: +2,147,483,647 and the lowest ist −2,147,483,648 (notice that there is one more negative) |
||||
|
