My Java compiler javac 1.6.0_37 fails at compiling the following small program:
import java.util.*;
public class QueueTest {
public static void main( String args[] ) {
Queue<String> q = new LinkedList<String>();
}
}
The error message is:
QueueTest.java:5: incompatible types
found : java.util.LinkedList<java.lang.String>
required: Queue<java.lang.String>
Queue<String> q = new LinkedList<String>();
^
1 error
According to the documentation, LinkedList<E> implements Queue<E>, and this should compile. I was able to compile this code with javac 1.5.0_08. Also, you can take the generics out of the picture and the problem remains the same (it won’t compile, even without generics).
My question is: anyone defends the position of this not being a bug?
Try doing explicitly:
Note that when importing with
package.*it is prone to overriding (if you have a class with the same name that you explicitly imported or in the working package):From the docs:
What you have here is a type-import-on-demand declaration, which is shadowed by a single type import declaration