Why the inconsistency?
|
|
There is no inconsistency: the methods are simply designed to follow different specifications.
So by design Other methods were added in JDK 1.2 (e.g. Arguably, perhaps instead of Here's a quote from Effective Java 2nd Edition, Item 40: Design method signatures carefully:
Distantly related questions |
|||||||||||||||||
|
|
I agree, that it is odd that Math.round(double) returns long. If large double values are casted to long (which is what Math.round implicitly does), Long.MAX_VALUE is returned. I recommend using Math.rint() in order to avoid that (even it's rounding behaviour is somewhat strange: ties are settled by rounding to the even integer, i.e. 4.5 is rounded down to 4.0 but 5.5 is rounded up to 6.0). Unfortunately, the "why" is unknown. Somebody made that decision, and he probably never gave an interview to tell us why. My guess is, that Math.round was designed to provide a better way (i.e. with rounding) for converting doubles to longs. |
|||
|
|
|
but [update: hmmm. looks like smalltalk returns integers. i don't know enough about smalltalk to know if that is correct and/or general, and the method is called if it's not smalltalk, then we're left with the hypothesis that someone simply chose poorly (given the implicit conversions possible in java it seems to me that returning a in other words: functions common to java and c tend to be consistent with the c library standard at the time; the rest seem to be arbitrary, but this particular wrinkle may have come from smalltalk. |
||||
|
|