자바:사용자 정의 주석 과 반사
10318 단어 Java
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()
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.