标签:图片 需要 doc 接口 mic alt 作用 http 简单
简单来说,需要对程序加以@注解名。
但注解与注释最大的不同是,它可以被程序读取,有着自己的作用目标,以及保存的范围。
@Override
@Deprecated
@SuppressWarnnings(value=***)
这是Java内置的三个注解,意思分别为重写父类方法,过时的,镇压警告。
@Target //注解作用的目标
@Retention //注解保存的范围
@Document //是否被javadoc解析
@Inherited //能被子类继承
元注解即为注解的注解,保存了注解的相关信息。
public @interface 注解名 {注解内容}
使用此方法定义注解,自动为其java.lang.annotation.Annotation的接口继承
@Target(ElementType.Type)
@Retention(RetentionPolicy.class)
@Inherited
@Document
public @interface MyAnnotation {
String name();
int id() default 0;
String[] addresses();
}
标签:图片 需要 doc 接口 mic alt 作用 http 简单
原文地址:https://www.cnblogs.com/coderhu1/p/13950469.html