本文介绍了Java:如何@SuppressWarnings无法访问代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有时在调试时,您无法访问代码片段。是否有抑制警告?
Sometimes when you are debugging, you have unreachable code fragment. Is there anyway to suppress the warning?
推荐答案
在任何编译器上执行此操作的唯一方法是 @ SuppressWarnings(all)
。
The only way to do this on any compiler is @SuppressWarnings("all")
.
如果您正在使用Eclipse,请尝试 @SuppressWarnings(unused)
。
If you're using Eclipse, try @SuppressWarnings("unused")
.
这篇关于Java:如何@SuppressWarnings无法访问代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!