Can I convert long to int?

245,353

Solution 1

Just do (int)myLongValue. It'll do exactly what you want (discarding MSBs and taking LSBs) in unchecked context (which is the compiler default). It'll throw OverflowException in checked context if the value doesn't fit in an int:

int myIntValue = unchecked((int)myLongValue);

Solution 2

Convert.ToInt32(myValue);

Though I don't know what it will do when it's greater than int.MaxValue.

Solution 3

Sometimes you're not actually interested in the actual value, but in its usage as checksum/hashcode. In this case, the built-in method GetHashCode() is a good choice:

int checkSumAsInt32 = checkSumAsIn64.GetHashCode();

Solution 4

The safe and fastest way is to use Bit Masking before cast...

int MyInt = (int) ( MyLong & 0xFFFFFFFF )

The Bit Mask ( 0xFFFFFFFF ) value will depend on the size of Int because Int size is dependent on machine.

Solution 5

A possible way is to use the modulo operator to only let the values stay in the int32 range, and then cast it to int.

var intValue= (int)(longValue % Int32.MaxValue);
Share:
245,353

Related videos on Youtube

ShigaSuresh
Author by

ShigaSuresh

Updated on May 13, 2020

Comments

  • ShigaSuresh
    ShigaSuresh almost 4 years

    I want to convert long to int.

    If the value of long > int.MaxValue, I am happy to let it wrap around.

    What is the best way?

  • T.J. Crowder
    T.J. Crowder about 13 years
    "Though I don't know what it will do when it's greater than int.MaxValue" It will throw an OverflowException, which is exactly what the OP doesn't want: msdn.microsoft.com/en-us/library/d4haekc4.aspx
  • T.J. Crowder
    T.J. Crowder about 13 years
    For anyone else who had the same question I did: Note that discarding the MSBs can have an effect on the sign of the result. With the above, myIntValue can end up negative when myLongValue is positive (4294967294 => -2) and vice-versa (-4294967296 => 0). So when implementing a CompareTo operation, for instance, you can't happily cast the result of subtracting one long from another to an int and return that; for some values, your comparison would yield an incorrect result.
  • TamusJRoyce
    TamusJRoyce over 12 years
    Test if myValue > Integer.Max before running the convert, if you need to do other processing when myValue > Integer.Max. Convert.ToInt32(myValue) will overflow (no exception, I believe) otherwise. This method works in VB.NET as well.
  • mmx
    mmx over 12 years
    @Chris: new Random() uses Environment.TickCount under the hood; no need to seed manually with clock ticks.
  • Caramiriel
    Caramiriel about 10 years
    It's been a while ago since this answer was given, though I want to mention that the hashcode implementation might differ between .NET versions. This might not actually be happening, but there is no guarantee that this value is the same between different application runs/appdomains.
  • Richard June
    Richard June over 9 years
    While (int) is valid, Convert is a better answer. Better to have weird exceptions than weird data.
  • Glenn Slayden
    Glenn Slayden about 7 years
    The default context is unchecked, so unless you've explicitly changed it, then the unchecked keyword (as shown in this answer and @ChrisMarisic's comment, etc.) is not needed, and int myIntValue = (int)myLongValue is exactly equivalent. However do note that regardless of whether you use the unchecked keyword or not, you're getting the non-mathematical rude truncation behavior described by @T.J.Crowder where the sign can flip in some overflow cases. The only way to truly ensure mathematical correctness is to use the checked(...) context, where those cases will throw an exception.
  • ruffin
    ruffin about 7 years
    @RichardJune Um, no? The OP here explicitly says, "If the value of long > int.MaxValue, I am happy to let it wrap around." I can see arguing your statement in general, but in this specific case, no, Convert is not good.
  • Sergey
    Sergey about 7 years
    if (value > Int32.MaxValue) return Int32.MaxValue; else return Convert.ToInt32( value );
  • ToolmakerSteve
    ToolmakerSteve about 6 years
    Need to decide what you want to happen when the result will either overflow, or become a negative number. What you show will still overflow, IIRC, because you are letting the sign bit through. [As mentioned in another answer, in unchecked context you won't get an overflow - but you don't need to mask in unchecked to avoid the overflow, so a solution is only needed in checked context.] Example for 16-bits. Signed 16-bits holds (-32768, 32767). Masking with 0xFFFF allows value up to 65535, causing overflow, IIRC. Could mask to avoid sign bit, 0x7FFF or 0x7FFFFFFF, if want positive only.
  • ToolmakerSteve
    ToolmakerSteve about 6 years
    To add to what @Caramiriel is saying: if using as a temporary hashcode, during your current app session, then GetHashCode is an appropriate choice. If you are after a persistent checksum - a value that will be the same when you run your app later, then don't use GetHashCode, as it is not guaranteed to be the same algorithm forever.
  • Jeppe Stig Nielsen
    Jeppe Stig Nielsen about 5 years
    This would clamp the longValue to the nearest representable int if the original value is to huge. But it lacks the same treatment of too negative inputs, which would lose the most significant bits instead; you would need to compare to Int32.MinValue also. The original poster did not seem to want clamping, though.
  • G. Goncharov
    G. Goncharov over 4 years
    IMHO sometimes better to get exception than wrong value, which Int32.MaxValue would be...
  • GuiRitter
    GuiRitter over 3 years
    This worked best for me, as all other attempts to bit mask transformed 281474976710656 (2^48) to 0.
  • ToolmakerSteve
    ToolmakerSteve over 2 years
    @Sergey - if that is what you want to do, then don't forget MINUS numbers: return value < Int32.MinValue ? Int32.MinValue : (value > Int32.MaxValue ? Int32.MaxValue : (int)value);
  • ToolmakerSteve
    ToolmakerSteve over 2 years
    To clamp negative values also, do (int)Math.Max(Int32.MinValue, Math.Min(Int32.MaxValue, longValue)). However I find the equivalent stackoverflow.com/a/58011064/199364 easier to understand.
  • ToolmakerSteve
    ToolmakerSteve over 2 years
    @GuiRitter - Certain large values will still become 0. (Any multiple of MaxValue). Consider instead (int)(longValue > Int32.MaxValue ? (longValue % Int32.MaxValue) + 1 : longValue). Similar logic can be added for negative values: (int)(longValue < Int32.MinValue ? (longValue % Int32.MaxValue) - 1 ? (longValue > Int32.MaxValue ? (longValue % Int32.MaxValue) + 1 : longValue))