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. |
|||||||||||||||||||||
|
|
The most correct answer I can think of is |
|||||||||||||||||||
|
|
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. |
|||||||||||||||||||||
|
|
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! |
|||||||||||||||||||
|
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:
|
|||||||
|
|
If you think the value is too hard to remember in base 10, try base 2: 1111111111111111111111111111111 |
|||||||||||||
|
|
Just take any decent calculator and type in "7FFFFFFF" in hex mode, then switch to decimal. 2147483647. |
|||||||||||
|
|
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) |
||||
|
The easiest way to remember is to look at For example (from MSDN),
|
||||
|
|
|
Anyway, take this regex (it determines if string contains not negative Integer in decimal form that not greater than Int32.MaxValue)
Maybe it would help you to remember |
|||||
|
|
2GB (is there a minimum length for answers?) |
|||||||||||
|
|
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. |
|||||||||||
|
|
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. |
|||
|
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! |
|||||||
|
|
Largest negative (32bit) value : -2147483648 Largest positive (32bit) value : 2147483647 Mnemonic: "drunk AKA horny" drunk ========= Drinking age is 21 21 47 4(years) 3(years) 4(years) |
|||||
|
|
with Groovy on the path:
(Groovy is extremely useful for quick reference, within a Java context) |
|||
|
|
|
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. |
|||||
|
|
The easiest way to do this for integers is to use hexadecimal, provided that there isn't something like Int.maxInt(). The reason is this: Max unsigned values
Signed values, using 7F as the max signed value
Signed values, using 80 as the max signed value
How does this work? This is very similar to the binary tactic, and each hex digit is exactly 4 bits. Also, a lot of compilers support hex a lot better than they support binary.
So 7F is equal to 01111111 / 7FFF is equal to 0111111111111111. Also, if you are using this for "insanely-high constant", 7F... is safe hex, but it's easy enough to try out 7F and 80 and just print them to your screen to see which one it is |
||||
|
|
|
It's about CYou can find it in C like that:
gives (well, without the
JavaYou can get this with Java, too:
But keep in mind that Java integers are always signed. PythonPython has arbitrary precision integers. But in Python 2, they are mapped to C integers. So you can do this:
So Python switches to |
||||
|
|
|
Interestingly, Int32.MaxValue has more characters than 2,147,486,647.. But then again, we do have code completion, So I guess all we really have to memorize is |
|||
|
|
|
It is very easy to remember. In hexadecimal one digit is 4 bits. So for unsigned int write |
|||
|
|
|
This is how I remember...
|
|||
|
|
|
Here's a mnemonic for remembering 2**31, subtract one to get the maximum integer value. a=1,b=2,c=3,d=4,e=5,f=6,g=7,h=8,i=9
I've used the powers of two up to 18 often enough to remember them, but even I haven't bothered memorizing 2**31. It's too easy to calculate as needed or use a constant, or estimate as 2G. |
|||||
|
|
protected by Tim Post♦ Jun 16 '12 at 7:55
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
