码迷,mamicode.com
首页 > 编程语言 > 详细

Java @SuppressWarnings

时间:2019-01-09 00:28:30      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:接受   import   ted   rom   not   stat   注解   oranges   错误   

@SuppressWarnings() 注解以@开头可以接受参数

@SuppressWarnings("unchecked") 不受检查的警告信息应该被抑制

//: holding/ApplesAndOrangesWithoutGenerics.java
// Simple container example (produces compiler warnings).
// {ThrowsException}
package object;
import java.util.*;

class Apple {
  private static long counter;
  private final long id = counter++;
  public long id() { return id; }
}

class Orange {}    

public class ApplesAndOrangesWithoutGenerics {
  @SuppressWarnings("unchecked")
  public static void main(String[] args) {
    ArrayList apples = new ArrayList();
    for(int i = 0; i < 3; i++)
      apples.add(new Apple());
    // Not prevented from adding an Orange to apples:
    apples.add(new Orange());
    for(int i = 0; i < apples.size(); i++)
      ((Apple)apples.get(i)).id();//注释@SuppressWarnnigs("unchecked")抑制了类型转化错误信息
      // Orange is detected only at run time
  }
} /* (Execute to see output) *///:~

 

Java @SuppressWarnings

标签:接受   import   ted   rom   not   stat   注解   oranges   错误   

原文地址:https://www.cnblogs.com/jiangfeilong/p/10242083.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!