溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

怎么利用反射取得Annotation信息

發(fā)布時(shí)間:2021-06-22 17:14:03 來(lái)源:億速云 閱讀:116 作者:Leah 欄目:編程語(yǔ)言

本篇文章為大家展示了怎么利用反射取得Annotation信息,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。

獲取Annotation信息

在進(jìn)行類(lèi)或方法定義時(shí),都可以使用一系列的Annotation進(jìn)行聲明,于是如果要想獲得這些Annotation信息,那么可以直接通過(guò)反射來(lái)完成。在java.lang.reflect里面有一個(gè)AccessibleObject類(lèi),在本類(lèi)中提供有獲取Annotation類(lèi)的方法:

獲取全部Annotation:
public Annotation[] getAnnotations()
獲取指定Annotation:
public <T extends Annotation> T getAnnotation(Class<T> annotationClass)

怎么利用反射取得Annotation信息

范例:定義一個(gè)接口,并在接口在使用Annotation

import java.io.Serializable;import java.lang.annotation.Annotation;import java.lang.reflect.Method;public class JavaAPIDemo {public static void main(String[] args) throws Exception {
        {   //獲取接口上的Annotation信息Annotation annotations [] = IMessage.class.getAnnotations();  //獲取接口上的全部Annotationfor (Annotation temp : annotations) {
                System.out.println(temp);//@java.lang.FunctionalInterface()//@java.lang.Deprecated(forRemoval=false, since="1.0")}
        }
        System.out.println("-----------------------");
        {//獲取MessageImpl子類(lèi)上的Annotation信息Annotation annotations []= MessageImpl.class.getAnnotations();  //獲取類(lèi)上的全部Annotationfor (Annotation temp : annotations) {
                System.out.println(temp);
            }
        }
        System.out.println("-----------------------");
        {   //獲取MessageImpl.toString()方法上的Annotation信息Method method = MessageImpl.class.getDeclaredMethod("send", String.class);Annotation annotations [] = method.getAnnotations();  for (Annotation temp : annotations) {
                System.out.println(temp);
            }
        }
    }
}@FunctionalInterface    //程序執(zhí)行時(shí)可以獲取@Deprecated(since = "1.0")     interface IMessage {     //有2個(gè)Annotationpublic void send(String msg);
}@SuppressWarnings("serial")     //無(wú)法在程序執(zhí)行時(shí)獲取class MessageImpl implements IMessage, Serializable {@Override      //無(wú)法在程序執(zhí)行時(shí)獲取public void send(String msg) {
        System.out.println("【消息發(fā)送】" + msg);
    }
}

不同的Annotation有它的存在范圍,下面對(duì)比兩個(gè)Annotation:
@FunctionalInterface(運(yùn)行時(shí)):

@Documented@Retention(RetentionPolicy.RUNTIME)@Target(ElementType.TYPE)
public @interface FunctionalInterface {}

@SuppressWarnings(源代碼):

@Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE, MODULE})@Retention(RetentionPolicy.SOURCE)
public @interface SuppressWarnings {}

現(xiàn)在發(fā)現(xiàn)“@FunctionalInterface”是在運(yùn)行時(shí)生效的Annotation,所以程序執(zhí)行時(shí)可以獲取Annotation;而“@SuppressWarnings”是在源代碼編寫(xiě)時(shí)有效。
在RetentionPolicy枚舉類(lèi)中還有一個(gè)class的定義,指的是在類(lèi)定義時(shí)生效。

自定義Annotation

現(xiàn)在已經(jīng)清楚了Annotation的獲取,以及Annotation的運(yùn)行策略,但是最為關(guān)鍵性的因素是如何實(shí)現(xiàn)自定義的Annotation呢?為此在Java中提供了新的語(yǔ)法,使用“@interface”來(lái)定義Annotation。
范例:自定義Annotation

import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.reflect.Method;@Retention(RetentionPolicy.RUNTIME)   //定義Annotation的運(yùn)行策略@interface DefaultAnnotation {      //自定義的Annotationpublic String title();      //獲取數(shù)據(jù)public String url() default "www.mldn.cn";   //獲取數(shù)據(jù)class Message {@DefaultAnnotation(title = "MLDN")public void send(String msg) {
        System.out.println("【消息發(fā)送】" + msg);
    }
}public class JavaAPIDemo {public static void main(String[] args) throws Exception {
        Method method = Message.class.getMethod("send",String.class);  //獲取指定方法DefaultAnnotation  anno = method.getAnnotation(DefaultAnnotation.class);  //獲取指定的Annotation//System.out.println(anno.title());  //直接調(diào)用Annotation中的方法  MLDN//System.out.println(anno.url());    //直接調(diào)用Annotation中的方法  www.mldn.cn//直接調(diào)用Annotation中的方法String msg = anno.title()+"("+anno.url()+")";  //消息內(nèi)容 method.invoke(Message.class.getDeclaredConstructor().newInstance(), msg);   //【消息發(fā)送】MLDN(www.mldn.cn)}
}

使用Annotation之后的最大特點(diǎn)是可以結(jié)合反射機(jī)制實(shí)現(xiàn)程序的處理。

上述內(nèi)容就是怎么利用反射取得Annotation信息,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI