2
组合多个@SuppressWarnings批注-Eclipse Indigo
因此,问题在于能够组合多个警告抑制,以便每个项目都不需要它自己的@SuppressWarnings注释。 因此,例如: public class Example public Example() { GO go = new GO(); // unused .... List<String> list = ( List<String> ) go.getList(); // unchecked } ... // getters/setters/other methods } 现在,@SuppressWarnings我不想在班级针对这两个警告设置两个警告,而是这样: @SuppressWarnings( "unused", "unchecked" ) public class Example public Example() { GO go = new GO(); // unused - …