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

I used the following line to convert float to int, but it's not as accurate as I'd like:

 float a=8.61f;
 int b;

 b=(int)a;

The result is : 8 (It should be 9)

When a = -7.65f, the result is : -7 (It should be -8)

What's the best way to do it ?

share|improve this question
3  
I should point out that just typecasting truncates the value and does not perform any rounding/flooring operations on the value. – Brian Graham Mar 19 '12 at 16:05

3 Answers

up vote 72 down vote accepted

Use Math.round() before typecasting using (int) should round the float to the nearest whole number.

share|improve this answer
Yeah. I redid my work in my head. You are correct. – Thomas Owens Aug 18 '09 at 17:45
why is the typecast needed after Math.round()? – randomstring Jun 9 '12 at 1:51
7  
Math.round() returns int value so typecasting using (int) is redundant. – Solvek Jul 2 '12 at 18:13
1  
use either/or... (int)foo is simpler. – Yuttadhammo Jul 12 '12 at 9:39

Actually, there are different ways to downcast float to int, depending on the result you want to achieve: (for int i, float f)

  • round (the closest integer to given float)

    Math.round(f)
    f =  2.0 -> i =  2 ; f =  2.22 -> i =  2 ; f =  2.68 -> i =  3
    f = -2.0 -> i = -2 ; f = -2.22 -> i = -2 ; f = -2.68 -> i = -3
    

    note: this is, by contract, equal to (int) Math.floor(i + 0.5f)

  • truncate (i.e. drop everything after the decimal dot)

    i = (int) f
    f =  2.0 -> i =  2 ; f =  2.22 -> i =  2 ; f =  2.68 -> i =  2
    f = -2.0 -> i = -2 ; f = -2.22 -> i = -2 ; f = -2.68 -> i = -2
    
  • ceil/floor (an integer always bigger/smaller than a given value if it has any fractional part)

    i = (int) Math.ceil(f)
    f =  2.0 -> i =  2 ; f =  2.22 -> i =  3 ; f =  2.68 -> i =  3
    f = -2.0 -> i = -2 ; f = -2.22 -> i = -2 ; f = -2.68 -> i = -2
    
    i = (int) Math.floor(f)
    f =  2.0 -> i =  2 ; f =  2.22 -> i =  2 ; f =  2.68 -> i =  2
    f = -2.0 -> i = -2 ; f = -2.22 -> i = -3 ; f = -2.68 -> i = -3
    

For rounding positive values, you can also just use (int)(f + 0.5), which works exactly as Math.Round in those cases (as per doc).

In theory you could use Math.rint(f) to do the rounding, but rint does not round 0.5 up, it rounds it up or down, whichever of the lower or higher integer is even, so it's useless in most cases.

See

http://mindprod.com/jgloss/round.html

http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Math.html

for more information and some examples.

share|improve this answer
+1 Nice answer. – dreamcrash Dec 12 '12 at 3:28

Math.round(value) round the value to the nearest whole number.

Use

1) b=(int)(Math.round(a));

      (or)

2) a=Math.round(a); b=(int)a;

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.