注解
在Java程序中,我们可以在很多地方看到注解,如一下情况:
注解有检查和约束的作用
内置注解
当被@Deprecated注解修饰的方法被使用的时候,方法会被画上杠:
元注解
当我们打开一个注解的时候,可以看到以下这些信息:
而上面这些注解就是元注解,在Java中,元注解有以下几个:
上面的@Target注解用来描述注解的使用范围,打开它的源码:
public enum ElementType {
/** Class, interface (including annotation type), or enum declaration */
TYPE,
/** Field declaration (includes enum constants) */
FIELD,
/** Method declaration */
METHOD,
/** Formal parameter declaration */
PARAMETER,
/** Constructor declaration */
CONSTRUCTOR,
/** Local variable declaration */
LOCAL_VARIABLE,
/** Annotation type declaration */
ANNOTATION_TYPE,
/** Package declaration */
PACKAGE,
/**
* Type parameter declaration
*
* @since 1.8
*/
TYPE_PARAMETER,
/**
* Use of a type
*
* @since 1.8
*/
TYPE_USE
}
它可以用在类、方法、属性、字段、构造器、本地变量、另一个注解、包、类型参数声明、类型使用上面。
@DocumentSpring Data MongoDB提供的一个注解,用于指定模型类型所对应的集合名称。@Document注解作用在类上,标记实体类为文档对象。@Documented注解表明这个注解应该被javadoc工具记录。在实际开发中,我们通常要在实体类上注明@Document。@Documented和@Deprecated注解长得有点像,但是@Documented只能用在注解上,如果一个注解被@Documented标注,那么被修饰的类在生成JavaDoc文档时会显示该注解。
自定义注解
public class CustomAnnotation {
@MyAnnotation
public void testAnnotation(){
}
}
@Target(ElementType.METHOD)
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation{
}
因为注解是有检查和约束作用的,当我将@MyAnnotation注解放在类上时就会报错,因为我定义的注解使用范围是在方法上面:
反射
有关反射的详细信息可以去看我的这篇文章:(2条消息) 反射机制和类加载机制_反射加载类_咸鱼吐泡泡的博客-CSDN博客
在理解反射之前先了解静态和动态语言: