所以問題是能夠結合多重警告抑制,以便每個項目不需要它自己的@SuppressWarnings
註釋。結合多個@SuppressWarnings註釋 - Eclipse Indigo
因此,例如:
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
}
但是,這並不是一個有效的語法,有沒有辦法做到這一點?
@SuppressWarnings( 「unused」,「unchecked」)不起作用,請修改爲@SuppressWarnings({「unused」,「unchecked」}) – Raj