Why doesn't java.lang.Number implement Comparable? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T16:49:50Zhttp://stackoverflow.com/feeds/question/480632http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/480632/why-doesnt-java-lang-number-implement-comparable13Why doesn't java.lang.Number implement Comparable? Julien Chastang2009-01-26T17:32:52Z2009-02-12T21:06:21Z
<p>Does anyone know why <code>java.lang.Number</code> does not implement <code>Comparable</code>? This means that you cannot sort <code>Number</code>s with <code>Collections.sort</code> which seems to me a little strange.</p>
<p><strong>Post discussion update:</strong></p>
<p>Thanks for all the helpful responses. I ended up doing <a href="http://radioeiffel.blogspot.com/2009/02/what-java-can-sort-numbers.html" rel="nofollow">some more research about this topic</a>.</p>
<p>The simplest explanation for why java.lang.Number does not implement Comparable is rooted in mutability concerns. For a bit of review, java.lang.Number is the abstract super-type of AtomicInteger, AtomicLong, BigDecimal, BigInteger, Byte, Double, Float, Integer, Long, Short. On that list, AtomicInteger and AtomicLong to do not implement Comparable. Digging around, I discovered that it is not a good practice to implement Comparable on mutable types because the objects can change during or after comparison rendering the result of the comparison useless. Both AtomicLong and AtomicInteger are mutable. The API designers had the forethought to not have Number implement Comparable because it would have constrained implementation of future subtypes. Indeed, AtomicLong and AtomicInteger were added in Java 1.5 long after java.lang.Number was initially implemented.</p>
<p>Apart from mutability, there are probably other considerations here too. A compareTo implementation in Number would have to promote all numeric values to BigDecimal because it is capable of accommodating all the Number sub-types. The implication of that promotion in terms of mathematics and performance is a bit unclear to me, but my intuition finds that solution kludgy.</p>
http://stackoverflow.com/questions/480632/why-doesnt-java-lang-number-implement-comparable/480651#4806511Answer by Pete Kirkham for Why doesn't java.lang.Number implement Comparable? Pete Kirkham2009-01-26T17:38:05Z2009-01-26T17:58:13Z<p>Very probably because it would be rather inefficient to compare numbers - the only representation into which every Number can fit to allow such comparison would be BigDecimal.</p>
<p>Instead, non-atomic subclasses of Number implements Comparable itself.</p>
<p>Atomic ones are mutable, so can't implement an atomic comparison.</p>
http://stackoverflow.com/questions/480632/why-doesnt-java-lang-number-implement-comparable/480654#4806540Answer by Steve Kuo for Why doesn't java.lang.Number implement Comparable? Steve Kuo2009-01-26T17:38:45Z2009-01-26T17:38:45Z<p>My guess is that by not implementing Comparable, it give more flexibility to implementing classes to implement it or not. All the common numbers (Integer, Long, Double, etc) do implement Comparable. You can still call Collections.sort as long as the elements themselves implement Comparable.</p>
http://stackoverflow.com/questions/480632/why-doesnt-java-lang-number-implement-comparable/480657#4806573Answer by yx for Why doesn't java.lang.Number implement Comparable? yx2009-01-26T17:39:25Z2009-01-26T17:39:25Z<p>in order to implement comparable on number, you would have to write code for every subclass pair. Its easier instead to just allow subclasses to implement comparable.</p>
http://stackoverflow.com/questions/480632/why-doesnt-java-lang-number-implement-comparable/480658#4806581Answer by duffymo for Why doesn't java.lang.Number implement Comparable? duffymo2009-01-26T17:39:54Z2009-01-26T17:39:54Z<p>Most of its subclasses do, but AtomicInteger and AtomicLong do not. Must have to do with concurrency making it impossible.</p>
http://stackoverflow.com/questions/480632/why-doesnt-java-lang-number-implement-comparable/480660#4806600Answer by toby for Why doesn't java.lang.Number implement Comparable? toby2009-01-26T17:40:16Z2009-01-26T17:40:16Z<p>Looking at the class hierarchy. Wrapper classes like Long, Integer, etc, implement Comparable, i.e. an Integer is comparable to an integer, and a long is comparable to a long, but you can't mix them. At least with this generics paradigm. Which I guess answers your question 'why'.</p>
http://stackoverflow.com/questions/480632/why-doesnt-java-lang-number-implement-comparable/480661#48066114Answer by Eddie for Why doesn't java.lang.Number implement Comparable? Eddie2009-01-26T17:40:37Z2009-01-27T01:26:30Z<p>For the answer, see Java bugparade <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4414323" rel="nofollow">bug 4414323</a>. You can also find a discussion from <a href="http://coding.derkeiler.com/Archive/Java/comp.lang.java.programmer/2007-07/msg02451.html" rel="nofollow">comp.lang.java.programmer</a></p>
<p>To quote from the Sun response to the bug report from 2001:</p>
<blockquote>
<p>All "numbers" are not comparable;
comparable assumes a total ordering of
numbers is possible. This is not even
true of floating-point numbers; NaN
(not a number) is neither less than,
greater than, nor equal to any
floating-point value, even itself.
{Float, Double}.compare impose a total
ordering different from the ordering
of the floating-point "<" and "="
operators. Additionally, as currently
implemented, the subclasses of Number
are only comparable to other instances
of the same class. There are other
cases, like complex numbers, where no
standard total ordering exists,
although one could be defined. In
short, whether or not a subclass of
Number is comparable should be left as
a decision for that subclass.</p>
</blockquote>
<p>Note to whoever downvoted this: I'm not saying this is the proper answer that should make everyone happy. I'm just saying that this is Sun's answer. They currently define the "brand" so their answer is final whether we like it or not. That's why I linked to the further discussion.</p>
http://stackoverflow.com/questions/480632/why-doesnt-java-lang-number-implement-comparable/480905#4809051Answer by Kendrick Wilson for Why doesn't java.lang.Number implement Comparable? Kendrick Wilson2009-01-26T18:50:33Z2009-01-26T18:50:33Z<p>byte(primitive) is a int(primitive). primitives have only one value at a time. </p>
<p>language design rules allows this.</p>
<p>// ========================================================</p>
<p>int i = 255</p>
<p>// down cast primitive</p>
<p>(byte)i == -1</p>
<p>// ========================================================</p>
<p>A Byte is not an Integer. Byte is a Number and a Integer is a Number. Number objects can have more than one value at the same time.</p>
<p>// ========================================================</p>
<p>Integer iObject = new Integer(255);</p>
<p>System.out.println(iObject.intValue()); // 255</p>
<p>System.out.println(iObject.byteValue()); // -1</p>
<p>// ========================================================</p>
<p>If a Byte is a Integer and Integer is a Number, Which one value will you use in the compareTo(Number number1,Number number2) method?</p>
http://stackoverflow.com/questions/480632/why-doesnt-java-lang-number-implement-comparable/481404#4814046Answer by cletus for Why doesn't java.lang.Number implement Comparable? cletus2009-01-26T21:20:59Z2009-01-26T21:20:59Z<p>It's worth mentioning that the following expression:</p>
<pre><code>new Long(10).equals(new Integer(10))
</code></pre>
<p>is always <code>false</code>, which tends to trip everyone up at some point or another. So not only can you not compare arbitrary <code>Number</code>s but you can't even determine if they're equal or not.</p>
<p>Also, with the real primitive types (<code>float</code>, <code>double</code>), determining if two values are equal is tricky and has to be done within an acceptable margin of error. Try code like:</p>
<pre><code>double d1 = 1.0d;
double d2 = 0.0d;
for (int i=0; i<10; i++) {
d2 += 0.1d;
}
System.out.println(d2 - d1);
</code></pre>
<p>and you'll be left with some small difference.</p>
<p>So back to the issue of making <code>Number</code> <code>Comparable</code>. How would you implement it? Using something like <code>doubleValue()</code> wouldn't do it reliably. Remember the <code>Number</code> subtypes are:</p>
<ul>
<li><code>Byte</code>;</li>
<li><code>Short</code>;</li>
<li><code>Integer</code>;</li>
<li><code>Long</code>;</li>
<li><code>AtomicInteger</code>;</li>
<li><code>AtomicLong</code>;</li>
<li><code>Float</code>;</li>
<li><code>Double</code>;</li>
<li><code>BigInteger</code>; and</li>
<li><code>BigDecimal</code>.</li>
</ul>
<p>Could you code a reliable <code>compareTo()</code> method that doesn't devolve into a series of if instanceof statements? <code>Number</code> instances only have six methods available to them:</p>
<ul>
<li><code>byteValue()</code>;</li>
<li><code>shortValue()</code>;</li>
<li><code>intValue()</code>;</li>
<li><code>longValue()</code>;</li>
<li><code>floatValue()</code>; and</li>
<li><code>doubleValue()</code>.</li>
</ul>
<p>So I guess Sun made the (reasonable) decision that <code>Number</code>s were only <code>Comparable</code> to instances of themselves.</p>
http://stackoverflow.com/questions/480632/why-doesnt-java-lang-number-implement-comparable/481570#4815701Answer by Peter Lawrey for Why doesn't java.lang.Number implement Comparable? Peter Lawrey2009-01-26T22:04:22Z2009-01-26T22:04:22Z<p>there is no stardard comparison for Numbers of different types.
However you can write your own Comparator and use it to create a TreeMap<Number, Object>, TreeSet<Number> or Collections.sort(List<Number>, Comparator) or Arrays.sort(Number[], Comparator);</p>