Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

40
votes
11answers
7k views

Why doesn't java.lang.Number implement Comparable?

Does anyone know why java.lang.Number does not implement Comparable? This means that you cannot sort Numbers with Collections.sort which seems to me a little strange. Post discussion update: Thanks ...
18
votes
6answers
465 views

Sorting Java objects using multiple keys

I've got a collection of Duck objects and I'd like to sort them using multiple keys. class Duck { DuckAge age; //implements Comparable DuckWeight weight; //implements Comparable String ...
14
votes
5answers
8k views

Why is compareTo on an Enum final in Java?

An Enum in Java implements the Comparable interface. It would have been nice to override Comparable's compareTo method, but here it's marked as final. The default natural order on Enum's compareTo ...
11
votes
3answers
1k views

Comparable and Comparator contract with regards to null

Comparable contract specifies that e.compareTo(null) must throw NullPointerException. From the API: Note that null is not an instance of any class, and e.compareTo(null) should throw a ...
10
votes
2answers
409 views

Java Comparable Interface

I was wondering why the sort method of the Arrays class is asking for a parameter of type Object[]. Why the parameter is not of type Comparable[]. If you don't pass a Comparable[] it's generating a ...
6
votes
2answers
125 views

How to implement an interface with an enum, where the interface extends Comparable?

Consider this code: public interface Foo extends Comparable<Foo> { ... } public enum FooImpl implements Foo { ... } Due to the restrictions of type erasure, I receive the following error: ...
6
votes
7answers
200 views

Quaternion Comparision?

Is quaternion comparison possible? I'm writing a Java class of Quaternions and I want to implement the Comparable interface to use the Collections.sort(List<Quaternion>) facility. I'm not expert ...
6
votes
5answers
241 views

Java: Compare/sort arbitrary objects

Is there anyway I can define a sequence/order for all objects in a JVM so that for any two distinct objects o1 or o2, there's a well defined rule that says either o1 > o2 or o2 > o1 and o1 == o2 if ...
6
votes
3answers
1k views

how can I implement Comparable more than once?

I'm upgrading some code to Java 5 and am clearly not understanding something with Generics. I have other classes which implement Comparable once, which I've been able to implement. But now I've got a ...
6
votes
2answers
84 views

Does the specific signed integer matter when implementing compareTo in a Comparable <Type> class?

When implementing compareTo(), does the degree of "difference" need to be taken into account? For instance, if I have 3 objects, C1, C2, and C3, such that C1 < C2 < C3. Should ...
5
votes
4answers
78 views

How do you implement compareTo methods cleanly?

Currently I am writing a compareTo method for quadratic functions in the form: ax^2 + bx + c. a, b, c are integer coefficients that are passed to the class through the constructor. In the compareTo ...
5
votes
2answers
3k views

Java Generics: compareTo and “capture#1-of ?”

The following gives me an error message: public static List<Comparable<?>> merge(Set<List<Comparable<?>>> lists) { List<Comparable<?>> result = new ...
4
votes
3answers
82 views

Generic java class that stores comparables

I have a generic java class that stores comparables: public class MyGenericStorage<T extends Comparable<T>> { private T value; public MyGenericStorage(T value) { ...
4
votes
3answers
100 views

java.lang.Comparable and equals

If I implement java.lang.Comparable for a class, do I still have to override equals() method? Or will the Comparable work for equals as well? If the answer is No, then what if some discrepancy arises? ...
4
votes
2answers
178 views

Write a comparable LINQ query for aggregate distinct count in sql?

I want to get a count for each month but count should be only at most one per day even if there are multiple occurences . I have the SQL query which works right but having trouble to convert it into ...
4
votes
3answers
83 views

Does compareTo have some sort of pre-launching delay?

I just found this statement: "One can greatly increase the performance of compareTo by comparing first on items which are most likely to differ". Is it true? And if it is, why?
4
votes
4answers
207 views

Java - Make an object collection friendly

If an object holds a unique primary key, what interfaces does it need to implement in order to be collection friendly especially in terms of being efficiently sortable, hashable, etc...? If the ...
4
votes
6answers
771 views

Java HashSet is allowing dupes; problem with comparable?

I've got a class, "Accumulator", that implements the Comparable compareTo method, and I'm trying to put these objects into a HashSet. When I add() to the HashSet, I don't see any activity in my ...
4
votes
4answers
286 views

Direct comparator in Java out of the box

I have a method which needs a Comparator for one of its parameters. I would like to pass a Comparator which does a normal comparison and a reverse comparator which does in reverse. ...
4
votes
9answers
17k views

Java: What is the difference between implementing Comparable and Comparator?

I have seen both used. When would you use one over the other?
4
votes
2answers
1k views

What do < and > mean such as implements Comparable<BigInteger>?

In Java 1.4.2, class java.math.BigInteger implements interfaces Comparable, Serializable. In Java 1.5.0, class java.math.BigInteger implements interfaces Serializable, Comparable<BigInteger>. ...
3
votes
6answers
66 views

Java - compareTo and operators

If I have a class Person that implements Comparable (compares personA.height to personB.height, for example), is it possible to use personA < personB as a substitute for ...
3
votes
4answers
86 views

C++ determine if class is comparable

I'm more or less Java programmer, so this might be a stupid question, but I didn't manage to find any simple solution. I have a class like this in C++: template<class T> class Node {...} And ...
3
votes
1answer
89 views

Sort unbound Comparable in Scala

I am somewhat familiar with sorting in Scala using Ordering's, however I would like to sort some objects which are defined in Java. They are Comparable (not Comparable[T]) and final: final class Term ...
3
votes
1answer
170 views

What is Scala's Comparable trait?

I am searching for Scala counterpart of C# IComparable, and I found Comparable trait. I mean -- Comparable is mentioned, but when I search for it at http://www.scala-lang.org/api/current/scala/ I get ...
3
votes
6answers
122 views

Why it is implied that objects are equal if compareTo() returns 0?

For example. Let's have a class Person. Person have name and height. Equals (and hashCode()) takes into account only name. Person is comparable (or we implement comparator for it, does not matter ...
3
votes
3answers
96 views

Best practice for compareTo() when argument must be typed of super class

I'm looking for best practice for the definition of the compareTo() method in the case where the class implements Comparable. Thus, the signature of the method has to be public int ...
3
votes
5answers
205 views

Comparable classes in Python 3

What is the standard way of making a class comparable in Python 3? (For example, by id.)
3
votes
4answers
1k views

Create a compareTo to a Generic Class that Implements Comparable

I have a Generic Class with two type variables, which implements java.lang.Comparable. public class DoubleKey<K,J> implements Comparable<DoubleKey<K,J>>{ private K key1; ...
3
votes
4answers
263 views

Does a natural comparator exist in the standard api?

I need a comparator as part of a strategy pattern that can either use the natural ordering of the objects or some custom ordering. For the natural ordering case, I wrote a simple comparator: private ...
3
votes
1answer
818 views

Java Comparable Interface compareTo method

I don't see anything that I am doing wrong, but NetBeans gives me the following error: incomparable types required: boolean found: java.lang.Object public int compareTo(Object obj) { if( obj ...
3
votes
10answers
1k views

Java Generics and Infinity (Comparable)

With the type Integer you can do this: int lowest = Integer.MIN_VALUE; What can I do if I use generics? K lowest = <...>; I need this in order to implement something similar to a ...
2
votes
2answers
69 views

How to compare Integer correctly in Java [closed]

Possible Duplicate: Integer wrapper class and == operator - where is behavior specified? I known Java integer use cache in -127~128. If Integer i = 1; Integer j = 1; Integer m = 128; ...
2
votes
2answers
78 views

Comparables and Wilcard Generics

Suppose I have the following class (for demonstration purposes) package flourish.lang.data; public class Toyset implements Comparable<Toyset> { private Comparable<?>[] trains; ...
2
votes
2answers
115 views

Java Generics, Inconvertible type, typecasting, heap d-ary

This is my remove method for d-ary heaps. I'm getting a lot of 'inconvertible type' error when i compile. Also note that my program extends Comparable. public class HeapImpl12<T extends ...
2
votes
3answers
370 views

public interface ITMark<E extends Comparable<E>>

now i want to implement this interface with the class. so how should i do it? public class TMark<E> implements ITMark{} is this the way but throwing errors I am getting the following: ...
2
votes
3answers
169 views

how to compare on multiple classes in java?

Right now, I have written at comparator that sorts an array of Integers and Strings. As you can see from the code, if the two classes aren't the same, then the String class takes the greater than ...
2
votes
3answers
293 views

List with Comparable Vs TreeSet

Option 1: Make a list which implements Comparable and sort it using collections.sort(List l) every time you add a value. Option 2: Make a TreeSet (which keeps itself sorted all the time). Which one ...
2
votes
4answers
192 views

Quick-sort in Java using Comparable

I was asked to improve given quick-sort algorithm: public void quickSort(Comparable[] a, int left, int right) { // Sort a[left…right] into ascending order. if (left < right) { int p = ...
2
votes
3answers
155 views

Java: unchecked call to compareTo(T)

1 class test { 2 public static int compare0(Comparable x, Comparable y) { 3 return x.compareTo(y); 4 } 5 public static int compare1(Object x, Object y) { 6 ...
2
votes
1answer
173 views

What might cause Collections.sort(List<T>, Comparator<? super T>) to throw a ClassCastException?

I am calling Collections.sort() on an ArrayList using a Comparator that I declared earlier. ArrayList<Employee> list = new ArrayList<Employee>(); Comparator<Employee> comparator = ...
2
votes
4answers
260 views

How to sort two different objects in a collection?

Suppose I have two classes CLassA and CLassB. And they have one atributte in common, for example the number of elements that each class holds. How can i create a collection from objects of ClassA and ...
2
votes
4answers
353 views

Adding an element to an ArrayList in the correct postition

I have a custom ArrayList interface that extends the Comparable class and is in ascending order. The class I'm working on is implementing this interface. My problem is I need to edit the add method ...
2
votes
2answers
150 views

Java: Compareable<List<T extends Compareable<T>>>

Is there any Compareable<Collection<T extends Compareable<T>>> implementation in Java (which behaves as C++'s std::list<T>::operator<() or ...
2
votes
4answers
212 views

implementing Comparable in an interface

I am calling a specific class using only its interface. The problem is, the class itself implements Comparable, but because I am referring to the class via a different interface, the compiler does not ...
2
votes
3answers
2k views

ordering a hashset example?

need an example on how to use a comparable class on a hashset to get an ascending order? Let say we have a hashset like: HashSet hs=new HashSet(); How can i get the hs to be in a ascending order??
2
votes
3answers
652 views

Why does the Java Collections Framework offer two different ways to sort?

If I have a list of elements I would like to sort, Java offers two ways to go about this. For example, lets say I have a list of Movie objects and I’d like to sort them by title. One way I could ...
2
votes
2answers
371 views

How come Java doesn't accept my LinkedList in a Generic, but accepts its own?

For a class assignment, we can't use any of the languages bultin types, so I'm stuck with my own list. Anyway, here's the situation: public class CrazyStructure <T extends Comparable<? super ...
2
votes
3answers
908 views

Consistent Equals() results, but inconsistent TreeMap.containsKey() result

I have the following object Node: private class Node implements Comparable<Node>(){ private String guid(); ... public boolean equals(Node o){ ...
2
votes
4answers
1k views

Java: Integer obj can't cast to Comparable

I'm having problems trying to pass an Integer object from a driver class as an argument for function of a SortedArray Generic class I created. From my driver class, I convert the user's int input into ...

1 2 3