参考:
https://www.cnblogs.com/liaojie970/p/9009199.html
@SuppressWarings注解
作用:用于抑制编译器产生警告信息。
@SuppressWarnings(“unchecked”)
告诉编译器忽略 unchecked 警告信息,如使用List,ArrayList等未进行参数化产生的警告信息。
告诉编译器同时忽略unchecked和deprecation的警告信息。
@SuppressWarnings(value={“unchecked”, “deprecation”})
示例3——抑制所有类型的警告:
@SuppressWarnings(“all”) public void addItems(String item){ List items = new ArrayList(); items.add(item); }