Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question
1  
just make sure you do not operate with doubles more than 2 ^ 54 or numbers will not fit into the fraction, so for example expressions like myLong == (long)(myDouble + 1) where myLong equals myDouble will evaluate to true – Vitalii Fedorenko Jan 26 '12 at 23:55

6 Answers

Assuming you're happy with truncating towards zero, just cast:

double d = 1234.56;
long x = (long) d; // x = 1234

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.

share|improve this answer
Great answer - the towards zero part would have been wrong for my app, so applause for highlighting this in your answer, and reminding my hungover brain to use Math.round() here instead of just casting ! – Phantomwhale Dec 9 '11 at 4:54

... And here is the rounding way which doesn't truncate. Hurried to look it up in the Java API Manual:

double d = 1234.56;
long x = Math.round(d);
share|improve this answer
It doesn't give the same result as a cast. So it depends on what rich wants to do. – Cyrille Ka Nov 26 '08 at 17:50
3  
yeah. it was thought as an addition to what Jon said :) – Johannes Schaub - litb Nov 26 '08 at 17:53
1  
I like this since it also works with Double and Long objects rather than primitive types. – themanatuf May 7 '12 at 17:18

(new Double(d)).longValue() internally just does a cast, so there's no reason to create a Double object.

share|improve this answer

Guava Math library has a method specially designed for converting a double to a long:

long DoubleMath.roundToLong(double x, RoundingMode mode)

You can use java.math.RoundingMode to specify the rounding behavior.

share|improve this answer

Do you want to have a binary conversion like

double result = Double.longBitsToDouble(394.000d);
share|improve this answer

Simply put, casting is more efficient than creating a Double object.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.