I came across this issue when refactoring code recently:
The method "getList()" below has a parameterized return type. Below that, I've put three methods which attempt to implicitly bind <T> to <Integer>.
What I can't figure out is why the first two compile and run correctly, whereas the third one (bindViaMethodInvocation) won't even compile.
Any clues?
In looking for a similar question on StackOverflow, I came across this question: Inferred wildcard generics in return type. The answer there (credit Laurence Gonsalves) has a couple of useful reference links to explain what is supposed to be going on: "The problem here (as you suggested) is that the compiler is performing Capture Conversion. I believe this is as a result of §15.12.2.6 of the JLS of the JLS."
package stackoverflow;
import java.util.*;
public class ParameterizedReturn
{
// Parameterized method
public static <T extends Object> List<T> getList()
{
return new ArrayList<T>();
}
public static List<Integer> bindViaReturnStatement()
{
return getList();
}
public static List<Integer> bindViaVariableAssignment()
{
List<Integer> intList = getList();
return intList;
}
public static List<Integer> bindViaMethodInvocation()
{
// Compile error here
return echo(getList());
}
public static List<Integer> echo(List<Integer> intList)
{
return intList;
}
}