所以问题是能够结合多重警告抑制,这样每个项目就不需要它自己的@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 - suppressed
....
List<String> list = ( List<String> ) go.getList(); // unchecked - suppressed
}
...
// getters/setters/other methods
}
但这不是一个有效的语法,有没有办法做到这一点?