我在编译代码时收到一条消息:
Note: H:\Project2\MyGui2.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
如何使用
-Xlint:unchecked
重新编译? 最佳答案
在javac的命令行上指定它:
或者,如果您使用的是Ant,请修改您的javac目标
<javac ...>
<compilerarg value="-Xlint"/>
</javac>
如果您使用的是Maven,请在
maven-compiler-plugin
中进行配置<compilerArgument>-Xlint:unchecked</compilerArgument>