Annotation
2019-08-16 10:54:20来源:博客园 阅读 ()
Annotation
在进行类或方法定义的时候,都可以使用一系列的Annotation(public interface Annotation)进行声明,如果想要获取这些Annotation的信息,可以直接通过反射来完成。在 java.lang.reflect 里面有一个AccessibleObject类,在本类中提供有Annotation类的方法:
1.获取全部Annotation:public Annotation[] getAnnotations();
2.获取指定Annotation:public <T extends Annotation> T getAnnotation?(Class<T> annotationClass)
package com.annotation.demo; import java.io.Serializable; import java.lang.annotation.Annotation; import java.lang.reflect.Method; @FunctionalInterface @Deprecated(forRemoval = false,since = "1.1") interface IMessage{ public void send(String msg); } @SuppressWarnings("serial") class MessageImpl implements IMessage,Serializable{ @Override @Deprecated(since = "1.3") public void send(String msg) { System.out.println("【消息发送】" + msg); } } public class annotationdemo { public static void main(String[] args) throws Exception { { System.out.println("-----------------------IMessage接口:-----------------------------"); Annotation annotations[] = IMessage.class.getAnnotations();//获取接口上的全部Annotation for(Annotation annotation:annotations){ System.out.println(annotation); } } { System.out.println("-----------------------MessageImpl子类:-----------------------------"); Annotation annotations[] = MessageImpl.class.getAnnotations();//获取MessageImpl子类上的全部Annotation for(Annotation annotation:annotations){ System.out.println(annotation); } } { System.out.println("-----------------------send()方法:-----------------------------"); Method method = MessageImpl.class.getDeclaredMethod("send", String.class); Annotation annotations[] = method.getAnnotations();//获取send方法上的全部Annotation for(Annotation annotation:annotations){ System.out.println(annotation); } } } }
不同的Annotation有不同的作用范围:
Annotation名称 | 作用范围 |
@SuppressWarnings
|
@Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE, MODULE}) @Retention(RetentionPolicy.SOURCE) public @interface SuppressWarnings {} |
@FunctionalInterface
|
@Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface FunctionalInterface {} |
@Deprecated
|
@Documented
@Retention(RetentionPolicy.RUNTIME) @Target(value={CONSTRUCTOR, FIELD, LOCAL_VARIABLE, METHOD, PACKAGE, MODULE, PARAMETER, TYPE}) |
原文链接:https://www.cnblogs.com/sunzhongyu008/p/11224907.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:springboot简单入门笔记
- Java 注解 2020-05-25
- Java Stream 流如何进行合并操作 2020-05-12
- 用一张表来存储数据状态,并且可以进行多状态精确查询;使用 2020-04-30
- JSR 303 进行后台数据校验 2020-04-28
- Java的外部类为什么不能使用private、protected进行修饰 2020-04-28
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash