Tagged Questions
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 ...
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
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 ...
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
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
4answers
88 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
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
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
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
158 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 ...
1
vote
2answers
136 views
Scala generics: Int not conforming to Comparable?
The following Scala declarations are OK:
trait Base[B <: Base[B,M,ID], M <: Meta[B,M,ID], ID <: Comparable[ID]] {
// ...
}
trait Meta[B <: Base[B,M,ID], M <: Meta[B,M,ID], ID ...
1
vote
4answers
156 views
How to implement a generic `max(Comparable a, Comparable b)` function in Java?
I'm trying to write a generic max function that takes two Comparables.
So far I have
public static <T extends Comparable<?>> T max(T a, T b) {
if (a == null) {
if (b == ...
1
vote
3answers
683 views
Java “unchecked call to compareTo(T) as a member of the raw type java.lang.Comparable”
I'm trying to implement a sorted list as a simple excercise in Java. To make it generic I have an "add(Comparable obj)" so I can use it with any class that implements the Comparable interface.
But, ...
1
vote
2answers
1k views
Why isn't Collections.binarySearch() working with this comparable?
I have this Player class which implements the Comparable interface. Then I have an ArrayList of Players. I'm trying to use binarySearch() on the list of Players to find one Player, but Java is giving ...
0
votes
2answers
194 views
Comparable and generics
When this class is created..
public static class TreeNode<E extends Comparable<E>>
what does the <E extends Comparable<E>> mean?
0
votes
3answers
363 views
Unchecked call to compareTo
Background
Create a Map that can be sorted by value.
Problem
The code executes as expected, but does not compile cleanly:
http://pastebin.com/bWhbHQmT
public class SortableValueMap<K, V> ...
0
votes
3answers
200 views
Using generics to create max function that returns the larger one
In Java, how would I use generics to create a max function that takes as parameters two Comparable objects of the same type and returns the larger one?
I tried:
public static <T extends ...
0
votes
1answer
172 views
Java: Simple issue with Interfaces and Generics
I made an interface to work with JGraphT. My intended use is like Comparable, in that implementing Comparable allows objects to be used with certain data structures. Simiarly, I have a JGraphT ...
0
votes
3answers
223 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 via generics that the ...