SuppressWarnings注解

SuppressWarnings注解

import java.util.List;

public class SuppressWarnings_ {

    // 1. 当我们不希望看到这些警告的时候,可以使用SuppressWarnings注解来抑制警告信息
    // 2. 在{""}中,可以写入你希望抑制(不显示)警告信息
    // 3. 可以指定的警告类型有
    //  all, 抑制所有警告
    //  boxing, 抑制与封装/拆装作业相关的警告
    //  deprecation,抑制与淘汰的相关警告
    //  fallthrough, 抑制与switch陈述式中遗漏break相关的警告
    //  finally, 抑制与未传回finally区块相关的警告
    //  hiding,抑制与隐藏变数的区域变数相关的警告
    //  incomplete- switch,抑制与switch陈述式(enum case)中遗漏项目相关的警告
    //  javadoc,抑制与javadoc相关的警告
    //  nls, 抑制与非nLs字串文字相关的警告
    //  null, 抑制与空值分析相关的警告
    //  rawtypes, 抑制与使用raw类型相关的警告
    //  resource, 抑制与使用Closeable类型的资源相关的警告
    //  restriction, 抑制与使用不建议或禁止参照相关的警告
    //  serial, 抑制与可序列化的类别遗漏serialVersionUID栏位相关的警告
    //  static-access, 抑制与静态存取不正确相关的警告
    //  static-method, 抑制与可能宜告为static的方法相关的警告
    //  super,抑制与置换方法相关但不含super呼叫的警告
    //  synthetic-access,抑制与内部类别的存取未最佳化相关的警告
    //  sync-override,抑制因为置换同步方法而遗漏同步化的警告
    //  unchecked, 抑制与未检查的作业相关的警告
    //  unqualified-field-access, 抑制与栏位存取不合格相关的警告
    //  unused,抑制与未用的程式码及停用的程式码相关的警告

	// 4.关于SuppressWarnings作用范围是和你放置的位置相关
    //  比如@SuppressWarnings放 置在main方法,那么抑制警告的范围就是main
    //  通常我们可以放置具体的语句,方法,类。
	
	// 5. @SuppressWarnings 源码
    //  @Retention(RetentionPolicy.SOURCE)
    //  public @interface SuppressWarnings {
    //    /**
    //     * The set of warnings that are to be suppressed by the compiler in the
    //     * annotated element.  Duplicate names are permitted.  The second and
    //     * successive occurrences of a name are ignored.  The presence of
    //     * unrecognized warning names is <i>not</i> an error: Compilers must
    //     * ignore any warning names they do not recognize.  They are, however,
    //     * free to emit a warning if an annotation contains an unrecognized
    //     * warning name.
    //     * @return the set of warnings to be suppressed
    //     */
    //    String[] value();
    //  }
    
    @SuppressWarnings({"all"})
    public static void main(String[] args) {
        List list = new ArrayList();
        list.add("jack");
        list.add("tom");
        list.add("smith");
        int i;
        System.out.println(list.get(1));
    }
}

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值