java----Annotation
Posted yanxiaoge
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java----Annotation相关的知识,希望对你有一定的参考价值。
Annotation:
系统自带注解
public class Demo{ public static void main(String[] args) { Test test = new Test(); test.test(); //使用了不推荐使用的方法 } } //忽略编译期不当的警告 @SuppressWarnings("all") class Test{ //表示这个方法不再建议使用; @Deprecated public void test(){ System.out.println("方法已经过时"); } //检查此方法是不是覆盖了父类的方法 @Override public String toString() { return super.toString(); } }
自定义注解
以上是关于java----Annotation的主要内容,如果未能解决你的问题,请参考以下文章