I have tested some things with bounded parameters in generic methods and I discovered some strange behavior. It would be great If anybody could explain the two errors in the following code snippet. Thanks Marco
Imagine there are two classes Class1 and Class2 both extend from a BaseClass, Class2 implements an Interface.
In Class1, I have a method which returns an instance of Class2 in the following way:
public class Class2 extends BaseClass implements Interface {
@Override
public void method() {
System.out.println("test"); //$NON-NLS-1$
}
}
public class Class1
extends BaseClass {
public <T extends BaseClass & Interface> T getTwo() {
return new Class2();//Error: Type mismatch: cannot convert from Class2 to T
}
public static void main(String[] args) {
Interface two = new Class1().getTwo();//Error: Bound mismatch: The generic method getTwo() of type Class1 is not applicable for the arguments (). The inferred type Interface is not a valid substitute for the bounded parameter <T extends BaseClass & Interface>
System.out.println(two);
}
}
getTwomust have return type justClass2, orBaseClass, orInterface. IfTis defined only for one method there is no way for compiler to know which class exactly substitutesTat the linenew Class1().getTwo(). It would only be possible ifgetTwowould have input parameters of this type. – DRCB Dec 18 '11 at 20:36