Which of the following rounding mode is followed by casting a double to an int?
Result of rounding input to one digit with the given rounding mode
Input HALF_EVEN
Number UP DOWN CEILING FLOOR HALF_UP HALF_DOWN UNNECESSARY
5.5 6 5 6 5 6 5 6 throw ArithmeticException
2.5 3 2 3 2 3 2 2 throw ArithmeticException
1.6 2 1 2 1 2 2 2 throw ArithmeticException
1.1 2 1 2 1 1 1 1 throw ArithmeticException
1.0 1 1 1 1 1 1 1 1
-1.0 -1 -1 -1 -1 -1 -1 -1 -1
-1.1 -2 -1 -1 -2 -1 -1 -1 throw ArithmeticException
-1.6 -2 -1 -1 -2 -2 -2 -2 throw ArithmeticException
-2.5 -3 -2 -2 -3 -3 -2 -2 throw ArithmeticException
-5.5 -6 -5 -5 -6 -6 -5 -6 throw ArithmeticException
I know that it's not related to casting primitives the enum I have quoted, however the table surely covers the way that a double gets downacasted to an int. Which one of the list does that? Thanks in advance.
It simply truncates towards zero - is represented by the confusingly-named
DOWN
in your question.From section 5.1.3 of the JLS:
(The rest isn't relevant to the question.)