前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Java注解Annotation使用

Java注解Annotation使用

作者头像
用户9854323
发布2022-06-25 10:27:26
1730
发布2022-06-25 10:27:26
举报
文章被收录于专栏:小陈飞砖

Java注解Annotation的使用

RuntimeAnnotation注解

代码语言:javascript
复制
package annotation;


import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface RuntimeAnnotation {
}

ClassAnnotation注解

代码语言:javascript
复制
package annotation;


import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


@Retention(RetentionPolicy.CLASS)
@Target(ElementType.FIELD)
public @interface ClassAnnotation {
}

枚举类AnType中使用注解

代码语言:javascript
复制
package annotation;

import java.lang.annotation.Annotation;
import java.lang.reflect.Field;

public enum AnType {

    @RuntimeAnnotation
    @ClassAnnotation
    TYPE_TEST_1,


    @ClassAnnotation
    TYPE_TEST_2;


    /**
     * 注解使用:可以在运行时通过反射判断某字段是否有某注解进而进行一些操作
     */
    public boolean isRuntimeAnnotation(){

        Field field = new Field();

        try {
            /**
             * 通过反射获取该对象在枚举中的字段
             */
            field = this.getClass().getField(this.name());
        } catch (Exception e) {

        }

        return isFieldAnnotated(field, RuntimeAnnotation.class);

    }

    /**
     * 该field的注解中是否匹配输入的注解
     */
    private boolean isFieldAnnotated(Field field, Class<? extends Annotation> annotationClass) {
        if (field == null) {
            return false;
        }

        /**
         * annotations中有RuntimeAnnotation,但是没有ClassAnnotation
         * 因为RuntimeAnnotation被注解为Runtime,可以被反射出来
         */
        Annotation[] annotations = field.getAnnotations();
        if(annotations == null || annotations.length == 0){
            return false;
        }
        for (Annotation annotation : annotations) {
            if (annotation.annotationType().equals(annotationClass)) {
                return true;
            }
        }
        return false;
    }

}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-09-29,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档