java中的SuppressWarnings

来源:百度文库 编辑:神马文学网 时间:2024/04/27 21:13:49

 有时候使用Myeclipse总是出现 黄色的警告,看起来不爽,如果用了一下这些注解就不会有了.

@SuppressWarnings("unchecked"),泛型
@SuppressWarnings("deprecation"), deprecated方法
@SuppressWarnings(value={"deprecation","unchecked"}) 双选
@SuppressWarnings("serial"), 序列化

 

unchecked: 执行了未检查的转换时的警告,例如当使用集合时没有用泛型 (Generics) 来指定集合保存的类型。
deprecation: 使用了不赞成使用的类或方法时的警告
serial: 当在可序列化的类上缺少serialVersionUID定义时的警告,在持久化的bean层用的较多