I have a static function with the following signature for a generic type T
public static<T> List<T> sortMap(Map<T, Comparable> map)
which should return a list of map keys with some property.
Now I want to pass a generic HashMap of type S
Map<S,Double> map
in calling the static function within a generic class, which has the map as a member variable.
I have listed a minimal code example below.
However, I get an error message (S
and T
are both T's but in different scopes of my code, i.e. T#1
= T
, T#2
= S
):
required: Map<T#1,Comparable>
found: Map<T#2,Double>
reason: cannot infer type-variable(s) T#1
(argument mismatch; Map<T#2,Double> cannot be converted to Map<T#1,Comparable>)
How can resolve this issue? I am surprised that Java does not allow inferring a generic type from a generic type. What structure in Java can one use to work with that kind of more abstract code reasoning?
Code:
public class ExampleClass<T> {
Map<T, Double> map;
public ExampleClass () {
this.map = new HashMap();
}
//the following line produces the mentioned error
List<T> sortedMapKeys = UtilityMethods.sortMap(map);
}
public class UtilityMethods {
public static<T> List<T> sortMap(Map<T, Comparable> map) {
// sort the map in some way and return the list
}
}
` to pass to a method that needs `Map`. `Double` and `Comparable` are different types with different inheritance hierarchies. – Balkrishna Rawool Jun 19 '15 at 08:50