我需要在应用程序中使用System.exit(0)。 Eclipse已安装了PMD插件,并抱怨此行代码。添加@SuppressWarnings ("PMD.DoNotCallSystemExit")会删除该警告,但是现在我收到一条警告,尽管该SuppressWarnings可以正常工作,但仍不受支持。

有办法解决吗?

最佳答案

要使Eclipse不标记@SuppressWarnings("PMD")批注,请在菜单标题Java->编译器->错误/警告->批注->'@SuppressWarnings'中的未处理 token 下,将其设置为忽略。

PMD页面上。

关于eclipse - 不支持的@SuppressWarnings (“PMD.DoNotCallSystemExit”),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5017569/

10-10 06:16