Skip to content
Advertisement

Java Generics Function Return Declaration

I am new to Java generics and have managed to get a getKeyByValue function working with a HashMap<String, String>, but I don’t understand how the function declaration can be ambiguous/redundant and still work. For example both of these declaration work but the first does not make a lot of sense to me:

JavaScript

Example with just <E>:

JavaScript

Advertisement

Answer

For the first sample, the generic format type T is not used, hence can be removed which brings the implementation to be as you second method implementation.

In the second implementation, the Java Generics use is with no utility as the equals method (you are calling with a typed parameter E) for the java.lang.String class accepts an Object argument, hence any object would fit in there.

JavaScript

The same method could be rewritten using a ? wildcard as the formal type since there is no type-bounded operations that are needed over the Map values:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement