我是IntelliJ IDEA的新手.我曾经使用过Eclipse.
默认情况下,IntelliJ不会要求为Java Generics Type提供参数类型.
// Following code doesn't give any warning List list = null; // I want to make IntelliJ ask me to specify type parameter (say Long) Listlist = null; // i.e If I want a List of Long
如何设置IntelliJ以便它在使用泛型java类型时让我提供泛型类型参数?
如果重要的话,我正在使用JDK 8.
IntelliJ提供检查名称Raw使用参数化类
启用该检查后.