How can I convert a long to int in Java?
|
Simple type casting should do it:
Note, however, that large numbers (usually larger than For instance, |
|||||||||||||||
|
|
A For example, the following sample code:
produces the following output on my machine:
Notice the negative sign on If you wanted to handle this case yourself, you might do something like:
All of this assumes positive numbers. For negative numbers, use |
||||
|
|
If using Guava library, there are methods Ints.checkedCast(long) and Ints.saturatedCast(long) for converting |
|||||
|
but that assumes that the |
|||||
|
|
In Java, a long is a signed 64 bits number, which means you can store numbers between -9,223,372,036,854,775,808 and 9,223,372,036,854,775,807 (inclusive). A int, on the other hand, is signed 32 bits number, which means you can store number between -2,147,483,648 and 2,147,483,647 (inclusive). So if your long is outside of the values permitted for an int, you will not get a valuable conversion. Details about sizes of primitive Java types here: http://download.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html |
||||
|
|
|
You can use the Long wrapper instead of long primitive and call Long.intValue() http://docs.oracle.com/javase/7/docs/api/java/lang/Long.html#intValue() it rounds/truncate the long value accordingly to fit in an int. |
||||
|
try this ;)
|
|||||||
|
|
In java ,there is a rigorous way to convert a long to int not only lnog can convert into int,any type of class extends Number can convert to other Number type in general,here I will show you how to convert a long to int,other type vice versa.
|
|||
|
