@Override:重写的注解。
@Deprecated:不推荐程序员使用,或者有更好的方式,但是可以使用。
@SuppressWarnings:用来抑制编译时的警告。
@Target:用于描述注解的适用范围。
@Retention:表示需要在什么级别保存该注解信息,用于描述注解的生命周期。
@Documented:说明注解将包含在javadoc中。
@Inherited:说明子类可以继承父类的注解。
使用@interface自定义注解时,自动继承了java.lang.annotation.Annotation接口
注解的参数:参数类型 + 参数名 + ()
public class Test01 { @MyAnnotation(name = "me") public void test() { } } @Target(value = {ElementType.METHOD, ElementType.TYPE}) //runtion>class>sources @Retention(value = RetentionPolicy.RUNTIME) @Documented @Inherited @interface MyAnnotation { String name() default "zjs"; }