1
vote
2answers
53 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<?>> r …
1
vote
1answer
269 views
Java Binary Tree, how to implement Node?
In the tree class I'm suppose to compare two node, for you know searching and adding items. I have some issues with how to make it comparable. When one adds data(generic, anything) …
1
vote
6answers
439 views
Java: What is the difference between implementing Comparable and Comparator?
I have seen both used. When would you use one over the other?
0
votes
3answers
129 views
Fun with Java generics
Anybody knows how to write the piece of code below using generics AND avoiding compiler warnings ? (@SuppressWarnings("unchecked") is considered cheating).
And, maybe, checking vi …
1
vote
3answers
116 views
Java: Sort a Collection using a CollatorKey
Hello,
what I would like to achieve is to sort a colletion of objects by a string value. However in a locale dependant way using a collator. Due to performance reasons I do not wa …
1
vote
5answers
129 views
In java what does extending from a comparable mean
I see code like this
class A implements Comparable<A> {
}
What does this mean, what are the advantages and disadvantages of it?
2
votes
10answers
483 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 si …
0
votes
4answers
329 views
Improving Comparable<T> compareTo performance
I profiled my code and found out that my class, which implements Comparable<T>, spends 8x more cpu time in
compareTo(Object)
than in
compareTo(T)
I assume that the sl …
13
votes
9answers
1k 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 discus …
4
votes
3answers
1k 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 o …
4
votes
2answers
444 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& …
0
votes
2answers
645 views
best way for get min and max value from a list of Comparables in java
I think in something like this:
public static <T extends Comparable<T>> T minOf(T...ts){
SortedSet<T> set = new TreeSet<T>(Arrays.asList(ts));
…
