As explained here, Math.Ceiling returns: "The smallest integral value that is greater than or equal to a". But later it says: "Note that this method returns a Double type instead of an integral type." I'm just wondering why?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Because a double has a much bigger maximum value than an integer supports. Asking for the ceiling on a |
|||||||||
|
|
I think the purpose of that 'note' is to make sure people aren't led astray by the phrase 'integral value' into thinking that the return value is necessarily of an integer type. As other answers point out, not all integral values can be stored in integer-y types. |
|||||||||
|
|
The range of the largest integer type is still much smaller than that of Double. So a lot of valid double values would not have a Ceiling(). |
|||
|
|