Why is there only Math.floor(double)?
I have a float and I want to round it "down".
do I have to cast it to double?
|
Why is there only Math.floor(double)? I have a float and I want to round it "down". |
|||
|
|
|
It will be converted automatically (see this on widening primitive conversions). If you want the result as a |
|||||||
|
|
No, a |
|||
|
|
|
A double is big enough to exactly represent every single possible float and more. You are not going to lose any precision, the cast happens automatically. |
|||
|
|
|
Yes, but when speed is critical support for single precision floats should be provided. There should be a single precision analogous for java.lang.Math |
|||
|
|
|
|
|||
|
|
|
You can just pass the float without doing a cast as a float has less precision than a double. |
|||
|
|