I need to cast a double to an int in Java, but the numerical value must always round down. i.e. 99.99999999 -> 99
Any ideas? :D
|
|
|
Casting to an int implicitly drops any decimal. No need to call Math.floor() (assuming positive numbers) Simply typecast with (int), e.g.:
This being said, it does have a different behavior from |
|||||||||
|
where n is a double. This'll actually return a double, it seems, so make sure that you typecast it after. |
|||
|
To cast a double to an int and have it be rounded to the nearest integer (i.e. unlike the typical For example, if we have
Then the following typecasting expressions for x and y and will return the rounded-down values (
But by adding 0.5 to each, we will obtain the rounded-to-closest-integer result that we may desire in some cases (
As a small note, this method also allows you to control the threshold at which the
to typecast. This will only round up to |
|||||||||
|
|
(int)99.99999 Will be 99. Casting a double to an int does not round, it'll discard the fraction part. |
|||
|
|
|
Try using Math.floor. |
|||