java注解@Interface与Annotation 财富值96
生活随笔
收集整理的這篇文章主要介紹了
java注解@Interface与Annotation 财富值96
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
我有一個對象被@Configuration注解,那我怎么知道它還是被Component注解的?
沒聽懂
@interface 是聲明注解的關鍵字(與class/interface一樣)
Annotation 也可以獲取自身的注解。
注:Meta-Annotations并不是Annotation的原生功能,只是在spring中實現了這種機制。如果單純的使用原生的Annotation則需要自己解析Meta-Annotations實現相應的功能才行。
obj.getClass().getAnnotation(Configuration.class).getClass() == Configu??ration.class 引用不同結果為false是正常情況。可以使用這種判斷obj.getClass().getAnnotation(Configuration.class).getClass().getName().equals(Configu??ration.class.getName())
沒聽懂
@interface 是聲明注解的關鍵字(與class/interface一樣)
Annotation 也可以獲取自身的注解。
注:Meta-Annotations并不是Annotation的原生功能,只是在spring中實現了這種機制。如果單純的使用原生的Annotation則需要自己解析Meta-Annotations實現相應的功能才行。
obj.getClass().getAnnotation(Configuration.class).getClass() == Configu??ration.class 引用不同結果為false是正常情況。可以使用這種判斷obj.getClass().getAnnotation(Configuration.class).getClass().getName().equals(Configu??ration.class.getName())
總結
以上是生活随笔為你收集整理的java注解@Interface与Annotation 财富值96的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: uva 10110——Light, mo
- 下一篇: uva 10515——Powers E