In java, what is the best way to convert a double to a long?
Just cast? or
double d = 394.000;
long l = (new Double(d)).longValue();
System.out.println("double=" + d + ", long=" + l);
|
In java, what is the best way to convert a double to a long? Just cast? or
|
|||
|
Assuming you're happy with truncating towards zero, just cast:
This will be faster than going via the wrapper classes - and more importantly, it's more readable. Now, if you need rounding other than "always towards zero" you'll need slightly more complicated code. |
|||
|
|
... And here is the rounding way which doesn't truncate. Hurried to look it up in the Java API Manual:
|
|||||||||||
|
|
|
|||
|
|
|
Guava Math library has a method specially designed for converting a double to a long:
You can use |
|||
|
|
|
Do you want to have a binary conversion like
|
||||
|
|
myLong == (long)(myDouble + 1)wheremyLongequalsmyDoublewill evaluate totrue– Vitalii Fedorenko Jan 26 '12 at 23:55