标签: java netbeans compiler-errors
我在Netbeans中收到错误Recompile with -Xlint:unchecked for details.。我在哪里可以找到取消选中的选项?
Recompile with -Xlint:unchecked for details.
答案 0 :(得分:19)
您没有“取消选中”该选项,您需要将-Xlint:unchecked参数添加到传递给Java编译器的参数中。
-Xlint:unchecked
这是通过对话框底部的“其他编译器选项”输入字段中的Project Properties -> Build -> Compiling完成的(其中显示“例如:-Xlint:unchecked ”)
Project Properties -> Build -> Compiling