자바:사용자 정의 주석 과 반사

10318 단어 Java
1.간단 한 소개
4.567917.역할:프로그램 자체 가 아니 라 주석 과 유사 한 방식 으로 프로그램 에 대해 설명 하 는 것 이 고 검사 와 제약 작용 도 존재 한다형식:사용**@주해 명(매개 변수)**형식사용 장소:가방,클래스,필드 와 방법 에 사용 할 수 있 습 니 다2.원 주해
주 해 를 설명 하 는 데 사용 되 는 주 해 는 자바 에서 4 개의 표준 원 주 해 를 정의 하 였 다.
@Target 설명 주석 사용 범위
@Retention 은 이 주석 정 보 를 어느 단계 에 저장 해 야 하 는 지,라 이 프 사이클 을 설명 합 니 다.
@Document 설명 은 이 주 해 를 javadoc 에 포함 합 니 다.
@Inherited 는 하위 클래스 가 부모 클래스 의 이 주 해 를 계승 할 수 있다 는 것 을 설명 합 니 다.
3.사용자 정의 주석
// METHOD:        , TYPE:       
@Target(value = {ElementType.METHOD, ElementType.TYPE})
// RUNTIME:     ,      value =        value           
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation {
    //           hello,            hello
    String value() default "hello";
    //        ,      {"a", "b"}         
    String[] message();
}

//             
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface FieldAnnotation{
    String value();
}

4.주석 사용
@MyAnnotation(message = {"hello", "world"})
class AnnotationDemo {

    @FieldAnnotation("String name annotation")
    private String name;

    @FieldAnnotation("int age annotation")
    private int age;

    // ...       get/set
}

5.테스트
	public static void main(String[] args) throws ClassNotFoundException {
        Class<?> clazz = Class.forName("com.demo.AnnotationDemo");
        //             
        Annotation[] annotations = clazz.getAnnotations();
        //       
        for (Annotation annotation : annotations) {
            Class<? extends Annotation> annotationType = annotation.annotationType();
            //         
            Annotation annotation1 = clazz.getAnnotation(annotationType);
            if (annotation1 instanceof MyAnnotation) {
                MyAnnotation myAnnotation = (MyAnnotation) annotation1;
                //       
                String[] message = myAnnotation.message();
                String value = myAnnotation.value();
            }
        }

        //         
        Field[] fields = clazz.getDeclaredFields();
        for (Field field : fields) {
            FieldAnnotation annotation = field.getAnnotation(FieldAnnotation.class);
            //          
            String value = annotation.value();
        }

        //           
        Method[] methods = clazz.getDeclaredMethods();
        for (Method method : methods) {
            //method.getAnnotation()
        }

    }

좋은 웹페이지 즐겨찾기